//by Fran Couņago clean at todosistemas dot com
function RatonSobre(el) {
	
	if(el.className=="menu_p")
	{
		el.className="menusobre_p";
	}
}

function RatonSale(el) {
	if(el.className=="menusobre_p")
	{
		el.className="menu_p";
	}
}

function PlayStop(x)
{
	if(x == 1) 
		document.getElementById("peli").Play();
	else
		document.getElementById("peli").StopPlay();
}

function ponencapa()
{
	winW=800;
	winH=600;
	if (parseInt(navigator.appVersion)>3) 
	{
		if (navigator.appName=="Netscape") 
		{
  			winW = window.innerWidth;
  			winH = window.innerHeight;
 		}
 		if (navigator.appName.indexOf("Microsoft")!=-1) 
		{
  			winW = document.body.offsetWidth;
  			winH = document.body.offsetHeight;
 		}
	}
	document.getElementById("vis").style.top=50;
	document.getElementById("vis").style.right=125;
	document.getElementById("vis").style.width=winW-250;
	document.getElementById("vis").style.height=winH-100;
	document.getElementById("vis").style.visibility='visible';
}

