/* ------------ ABRIR VENTANA PARA FOTO ------------ */
// usar: abreventana('url_relativa o completa', 'asdf')
// IMPORTANTE: en "nombre" poner una plabara SIN caracteres raros 
// (ni "eñes", "puntos", "comas", "GUIONES", "GUIONES BAJOS", etc.)
// NO USAR NINGÚN OTRO CARÁCTER O NÚMERO QUE SE SALGA DEL ALFABETO BÁSICO!!!
// si falla y la url está bien, seguro es por el nombre
//
// se RECOMIENDA dejarlo en blanco:
// 			abreventana('url_relativa o completa', '')
function abreventana(img, nombre) 
{
  foto1 = new Image();
  foto1.src=(img);
  Control(img, nombre);
}
		function Control(img, nombre) 
		{
		  if((foto1.width!=0)&&(foto1.height!=0)) 
		  {  
			verFoto(img, nombre);
		  } 
		  else 
		  {
			funcion="Control('"+img+"', '"+nombre+"')";  
			intervalo=setTimeout(funcion,20);
		  }
		}
		function verFoto(img, nombre) 
		{ 
		  ventana = new Object();
		  ancho=foto1.width+20;  
		  alto=foto1.height+20;  
		  cadena="width="+ancho+", height="+alto;  
		  ventana=window.open(img, nombre, cadena); 
		  ventana.document.bgColor = "#000";
		}
/* ------------ ABRIR VENTANA PARA FOTO ------------ */

function abreWeb(url, nombre, ancho, alto) 
{ 
  ventana = new Object();
  wd = ancho+20;  
  hg = alto+20;  
  cadena = "scrollbars=1, width="+wd+", height="+hg;  
  ventana = window.open(url, nombre, cadena); 
}

function enviaAmigo()
{
  ventana = new Object();
  wd = ancho+20;  
  hg = alto+20;  
  cadena = "scrollbars=1, width="+wd+", height="+hg;  
  ventana = window.open(url, nombre, cadena); 
}
