/////////////////////////////////////////////////////
// Modificar Tamaņo del SWF                        //
/////////////////////////////////////////////////////
function SWFZoom(d) {
	obj = document.getElementById("FlashGame");

	if (d==0) {
		nw = obj.width*0.9;
		nh = obj.height*0.9;
	} else {
		nw = obj.width*1.1;
		nh = obj.height*1.1;
	}
	obj.width = nw;
	obj.height = nh;
	
}

function prepost()
{
	var pre = document.getElementById("pre").style;
	var post = document.getElementById("post").style;
	post.display="block";
	pre.display="none";
}
var timer = window.setTimeout('prepost()', 10000);
self.moveTo(0,0);
self.resizeTo(screen.availWidth,screen.availHeight);

function OpenWindow(theURL,winName) { //v2.0
  window.open(theURL,winName,'status=no,scrollbars=no,resizable=no,width=200,height=100');
}
function OpenWindow2(theURL,winName) { //v2.0
  window.open(theURL,winName,'status=no,scrollbars=no,resizable=no,width=500,height=480');
}		

