	function abrirFoto(codigo)
	{
		url = "foto,"+codigo+".html"
		carac = "SCROLLBARS=yes,width=800,height=500"
		window.open(url,"Foto",carac)
	}
	
	function abrirVideo(codigo)
	{
		url = "video,"+codigo+".html"
		carac = "SCROLLBARS=yes,width=450,height=350"
		window.open(url,"Video",carac)
	}
	
	function abrirAnuncio(cod)
	{
		url ="anuncio,"+cod+".html"
		carac = "scrollbars=yes,menubar=no,width=500,heigth=300"
		window.open(url,"Anuncio",carac)
	}

	function comprar(codigo)
	{
		url = "comprar,"+codigo+".html"
		carac = "SCROLLBARS=yes,width=450,height=350"
		window.open(url,"ComprarVideo",carac)
	}
	
	
	function comprar(codigo)
	{
		url = "popUpComprar,"+codigo+".html"
		carac = "SCROLLBARS=yes,width=450,height=350"
		window.open(url,"Video",carac)
	}
	
	function vota(votar)
	{
		var fencuesta = document.getElementById("fencuesta")
		for (i=0;i<fencuesta.respuesta.length;i++){ 
    		if (fencuesta.respuesta[i].checked) 
        			break; 
    	} 
		if (i<fencuesta.respuesta.length || votar!="si")
		{
			carac = "toolbar=no,menubar=no,scrollbars=yes,resizable=no,width=500,height=300,left=100,top=100"
			window.open("","Votar",carac)
			fencuesta.target = "Votar"
			fencuesta.action = "votar.aspx?votar=si"
			fencuesta.submit()
		}
		else		
		{
			alert('Debe seleccionar alguna respueta')
		}
	}
	
	function Identificacion()
	{
		var formI = document.getElementById('fidentificacion')
		formI.action = "identificacion.aspx"
		formI.submit()
	}