//ABRIR VENTANA
function Win(URL,ancho,alto,scroll) {
if (ancho==null){
	ancho=518;
	alto=500;
}
if (scroll==null){
scroll=1
}
ventana=window.open(URL,"Win","toolbars=0,scrollbars="+scroll+",location=0,statusbars=0,menubars=0,resizable=no,width="+ancho+",height="+alto+",left=10,top=10");
}

//ENLACE QUE CIERRA VENTANA
function get(url) {
  opener.location = url;
  self.close()
}

//ADAPTA VENTANA A FOTO
function resizePage(){
  x=document.images['foto'].width;
  y=document.images['foto'].height;
  x=x+30;
  y=y+50; 
  window.resizeTo(x,y);
}

//ABRIR VENTANA FOTO

function Ver(FOTO)
{ventana=window.open("ver.asp?foto=images/"+FOTO+".jpg","Win","toolbars=0,scrollbars=0,location=0,statusbars=0,menubars=0,resizable=no,width=10,height=10,left=0,top=100");
  ventana.moveTo(((screen.width/2)-(325)),((screen.height/2)-(200)));
}
