function _browser(str) {
	(navigator.userAgent.toLowerCase().indexOf(str)+1) ? ret = true : ret = false;
	return ret;
}
function _SWFZoom(d) {
	obj = document.getElementById("FlashGame");
	if (_browser("msie")==false) {
		alert("Para modificar el tamaņo del juego se necesita el explorador de 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 PopWindow(idg)
{
points = document.votos_m.voto_check.value;
window.open('block/block-voto/count.php?id='+idg+'&puntos='+points,'Votar','width=300,height=100,menubar=no,scrollbars=no,toolbar=no,location=no,directories=no,resizable=no,top=0,left=0');
}


