// JavaScript Document

function IrURL (destino)
{	
	document.location = destino;
}

function IrPadreURL (destino)
{	
	parent.document.location = destino;
}

function ComboSaltar(selObj, destino)
{
	IrURL (destino+selObj.options[selObj.selectedIndex].value);
}

function Colorear (obj, primerPlano,fondo)
{	
	obj.style.color            = primerPlano;
	obj.style.backgroundColor  = fondo;
}


function Ventanita(url)
{

	Ventana=open(url,'1','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=yes,width=640,height=510,');	

}

function Zoom(imagen) { 
	ventana=open('','1','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=yes,width=640,height=480,');	
	ventana.document.write
	(
		"<html> <head>"
		+"<title>Artesaga.com - Galería de Arte y Antigüedades</title>"
		+'<link href="../../estilos/base.css" rel="stylesheet" type="text/css" >'
		+"</head> <body bgproperties='fixed' bgcolor='#FDFEF6' leftmargin='0' topmargin='0' marginwidth='0' marginheight='0'>"
		+'<img src="'+imagen+'"  alt="Pulse para Cerrar" onClick="window.close();" >'
		+"</body> </html> "
	); 
} 

/*
Roberto Gonzalez Vazquez
*/

