/////////////////////////////////////////////////////
// Modificar Tamaņo del SWF                        //
/////////////////////////////////////////////////////
function _SWFZoom(d) {
	obj = document.getElementById("23sxquepuntazoe");
	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 roll(obj, id) {
	/*if (typeof(obj) == "string") obj = document.getElementById(obj);
	obj.style.cursor = "pointer";
	var im = obj.src.substr(obj.src.length-5,1);
	if (id==null) (im==0) ? id = 1 : id = 0
	last = obj.src.lastIndexOf("/")+1;
	path = obj.src.substr(0,last)
	nimg = path + obj.src.substr(last,obj.src.length-5-last) + id + obj.src.substr(obj.src.length-4,4);
	obj.src = nimg;*/
}
function _browser(str) {
	(navigator.userAgent.toLowerCase().indexOf(str)+1) ? ret = true : ret = false;
	return ret;
}