var sSelected='btn0';	
function verfoto(imagen, ancho, alto)
{
	var prop='width=' + ancho + ',height=' + alto + ',toolbar=0,top=0,status=0,scrollbars=0';
	window.open('PopUpImg.html?img=/'+imagen, "Ventana",prop)
}

function PopUpImg(Imagen,ancho,alto)
{
	var prop='width=' + ancho + ',height=' + alto + ',toolbar=0,top=0,status=0,scrollbars=0';
	window.open('PopUpImg.aspx?img=/'+Imagen, "Ventana",prop)
}

function swap(objId,style)
{
	 if (style!='On')
		{  
			objId.className='Btn_off'; 
		}
		else 
		{
			objId.className='Btn_on';  
	}
 }
function ApagarTodos()
{
	for (i=1; i<11; i++)	{  //11 es la cantidad de botones
			Boton=eval("document.all.btn" +i);		
			if (Boton!=null){			
				Boton.className='Btn_off'; 	
			}	
	}
}
 
 function Cambiar(objId,Pagina)
 {
	ApagarTodos();
	objId.className='Btn_on'; 
	sSelected=objId.id;
	window.location.href=Pagina;
 }
 
