/*
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;

	link = 'http://www.aquajeux.com';

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

	videoPath = link + '/video/xml/video.php';
	videoSkin = link + '/video/skin_simexco_all.swf';

	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='" + link + "/video/simexco_video.swf?xmlPath=" + videoPath + "&videoSkin=" + videoSkin + "&id=" + id + "&videoIndex=" + videoIndex + "&xlanguage=" + xlanguage + "&logo=aquajeux' />";
    s+="<param name='WMode' value='transparent'>";
	s+="<param name='quality' value='high' />";
	s+="<param name='scale' value='showall' />";
	s+="<embed src='" + link + "/video/simexco_video.swf?xmlPath=" + videoPath + "&videoSkin=" + videoSkin + "&id=" + id + "&videoIndex=" + videoIndex + "&xlanguage=" + xlanguage + "&logo=aquajeux' 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 = "";
}


function __writeLogoFlash(imagePath, link_home)
{
	var s ='';
	if(!FlashDetect.installed){
		s+="<img src='" + imagePath + "logo_aquajeux.jpg' border='0' alt='Aquajeux' title='Aquajeux'>";
	}else{

		link = 'http://www.aquajeux.com';

		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='165' height='100' id='player' align='middle'>";
		s+="<param name='allowScriptAccess' value='sameDomain' />";
		s+="<param name='movie' value='" + link + "/video/logo_aquajeux.swf?link=" + link + "/" + link_home + "' />";
	    s+="<param name='WMode' value='transparent'>";
		s+="<param name='quality' value='high' />";
		s+="<param name='scale' value='showall' />";
		s+="<embed src='" + link + "/video/logo_aquajeux.swf?link=" + link + "/" + link_home + "' wMode='transparent' quality='high' width='164' height='88' name='player' align='middle' allowScriptAccess='sameDomain' type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/go/getflashplayer' />";
		s+="</object>";
	}
	document.getElementById("divLogoFlash").innerHTML = s;
}