/*
var myTimer;
var ie = document.all?true:false;
//if (!ie) document.captureEvents(Event.MOUSEMOVE)

function startTimer(e){
	//alert("start")
	//clearTimeout(myTimer);
	myTimer = setTimeout("startTimer", 100, true);
	/*var position = {
		'x' : e.pageX,
		'y' : e.pageY
	}
	document.onmousemove = "";/
}
function stopTimer(){
	clearTimeout(myTimer);
	document.onmousemove = "";
}
*/
function __writeVideoFlash(videoPath, id, videoIndex, xlanguage)
{
	//if (!e) var e = window.event
	//e = e ? e : window.event;
	//alert(e)

	//document.onmousemove = startTimer;

	document.getElementById("divVideoFlash").style.display = "";
	document.getElementById("divVideoFlashPage").style.display = "none";

	var s ='';
	s+="<object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0' width='100%' height='100%' id='player' align='middle'>";
	s+="<param name='allowScriptAccess' value='sameDomain' />";
	s+="<param name='movie' value='video/simexco_video.swf?xmlPath=video/xml/" + videoPath + "&id=" + id + "&videoIndex=" + videoIndex + "&xlanguage=" + xlanguage + "&videoSkin=video/skin_simexco_all.swf&logo=simexco' />";
    s+="<param name='WMode' value='transparent'>";
	s+="<param name='quality' value='high' />";
	s+="<param name='scale' value='showall' />";
	s+="<embed src='video/simexco_video.swf?xmlPath=video/xml/" + videoPath + "&id=" + id + "&videoIndex=" + videoIndex + "&xlanguage=" + xlanguage + "&videoSkin=video/skin_simexco_all.swf&logo=simexco' wMode='transparent' quality='high' width='100%' height='100%' name='player' align='middle' allowScriptAccess='sameDomain' type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/go/getflashplayer' />";
	s+="</object>";

	document.getElementById("divVideoFlash").innerHTML = s;

	//document.getElementById("divVideoFlash").style.width = "100%";
	document.body.scrollTop = 0;
	document.body.style.overflow = "auto";
	//document.getElementById("divVideoFlash").style.overflow = "auto";

}

function __closeVideoFlash()
{
	//stopTimer();

	document.getElementById("divVideoFlash").innerHTML = "";
	//document.getElementById("divVideoFlash").style.width = "900px";
    document.getElementById("divVideoFlash").style.display = "none";
	document.getElementById("divVideoFlashPage").style.display = "";
	document.body.style.overflow = "";
	//document.getElementById("divVideoFlash").overflow = "";
}
