/////////////////////////////////////////////////////
// Modificar Tamaņo del SWF                        //
/////////////////////////////////////////////////////


function _SWFZoom(d) {
	obj = document.getElementById("FlashGame");
	if (_browser("msie")==false) {
		alert("In order to modify the dimensions of the game, Internet Explorer is needed for Windows :(");
		return;
	}
	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 _SWFZoomsw(d) {
	obj = document.getElementById("swmovie1");
	if (_browser("msie")==false) {
		alert("In order to modify the dimensions of the game, Internet Explorer is needed for Windows :(");
		return;
	}
	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;
	
}



