// JavaScript Document
	function checkSize()
	{
		var alto_cliente = (document.all) ? document.body.clientHeight : window.innerHeight						
		var alto_contenido = document.getElementById("contenido").offsetHeight
		var decremento = 15; // 15 del body
		
		if(alto_contenido < alto_cliente)
		{
			// 30 = 15 del body + 15 de la posible línea de separación
			if(screen.width != 800 && screen.height != 600)			
			{
				decremento += 15; // 15 de la línea de separación
			}
			document.getElementById("estirado").height = Math.abs(parseInt(alto_cliente - alto_contenido - decremento));
		}
		
	}
	
	var winn;
	function abrir(cual,wid,heig,scrol){	
		var LeftP = (screen.width) ? (screen.width-wid) / 2 : 0;
		var TopP = (screen.height) ? (screen.height-heig) / 2 : 0;
		if(screen.width == 800 || screen.height == 600) scrol = 'auto';
		if(winn){
			if(!winn.closed) winn.close();
			winn = null;
		}
		window.focus();
		winn=eval("open('"+cual+"','','width="+wid+",height="+heig+",top="+TopP+",left="+LeftP+",scrollbars="+scrol+"')");
	}
	
	
	
	
	function Detalle(cual)
	{
		self.location.href="top10_detalle.asp?id_producto=" + cual ;
	}
	
	function Vota(cual)
	{
		self.location.href="flot_vota.asp?id_top=" + cual ;
	}
	
	function Vota2(cual)
	{
		self.location.href="top10.asp?niv1=4&niv2=0&id_top=" + cual ;
	}