<!--
	function setBtnImg(obj,imgnum,ruta){
		if(ruta=="")
			ruta="img/";
		if(imgnum==1)
			obj.src=ruta+obj.id+".png";
		else
			obj.src=ruta+obj.id+"-2.png";
	}
	
	function setImageView(imgpath, imgwidth,imgheight){
		document.getElementById("bigimg").src = imgpath;
		document.getElementById("bigimg").width = imgwidth;
		document.getElementById("bigimg").height = imgheight;
	}
	function hiddenPreload(){
		document.getElementById("preload").style.visibility = "hidden";
		document.getElementById("trans").style.visibility = "hidden";
	}
	function showPreload(){
		document.getElementById("preload").style.visibility = "visible";
		document.getElementById("trans").style.visibility = "visible";
	}	
	function resizeScreen(){
		if(screen.width>=1024)
			document.getElementById('container').style.left=((screen.width-970)/2)+'px';
	}
-->
