function _SWFZoom(d) {
	obj = document.getElementById("FlashGame");
	if (_browser("msie")==false) {
		alert("ˇEsta función sólo funciona con Internet Explorer!");
		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;
	
}

