// JavaScript Document
function scrollToPos(x) {
	var XPos = (document.all) ? document.body.scrollLeft : window.pageXOffset;
	scroll(x,XPos)
}

function heightUpdate(height) {
	
	var flashMovie = thisMovie('flashEngine');
	flashMovie.height = height;
	
}

function setHeight(eid, newH, m){
	document.getElementById(eid).style.height = newH + m;
}


function thisMovie(movieName) {
			var isIE = navigator.appName.indexOf("Microsoft") != -1;
			return (isIE) ? window[movieName] : document[movieName];
}
		
function static_pop(url,name,width,height,top,left,resize,scroll,location,toolbar) {
	var temp = "window.open('" + url + "', '" + name + "', '" + "width=" + width + ',height=' + height + ',top=' + top + ',left=' + left + ',resizable=' + resize + ',scrollbars=' + scroll + ',location=' + location + ',toolbar=' + toolbar + "')";
	eval(temp);
}