function navegador(str) {
(navigator.userAgent.toLowerCase().indexOf(str)+1) ? ret = true : ret = false;
return ret;
}
function ZoomImperioJuegos(d) {
obj = document.getElementById("FlashGame");
if (navegador("msie")==false) {
alert("Para modificar el tamaņo del juego se necesita el navegador Microsoft 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;
}
