var altura=screen.height;
var anchura=screen.width;
var opciones;
//var miurl='index.htm';
function Abrete(miurl) { //v2.0
  if (altura==600){
  opciones='toolbar=no,location=no,directories=no,menubar=no,scrollbars=yes,resizable=yes,width=790,height=590,left =0,top =0';
  window.open(miurl,'',opciones);
    }
  else if (altura==768)
  {
  opciones='toolbar=no,location=no,directories=no,menubar=no,scrollbars=yes,resizable=yes,width=1014,height=758,left =0,top =0';
  window.open(miurl,'',opciones);
    }
 else
  {
  opciones='toolbar=no,location=no,directories=no,menubar=no,scrollbars=yes,resizable=yes,width=640,height=480,left =0,top =0';
  window.open(miurl,'',opciones);
    }
	}
function AbreteSin(miurl) { //v2.0
  if (altura==600){
  opciones='width=790,height=590,left =0,top =0';
  window.open(miurl,'',opciones);
    }
  else if (altura==768)
  {
  opciones='width=1014,height=758,left =0,top =0';
  window.open(miurl,'',opciones);
    }
 else
  {
  opciones='toolbar=yes,location=no,directories=no,menubar=yes,scrollbars=yes,resizable=yes,width=640,height=480,left =0,top =0';
  window.open(miurl,'',opciones);
    }
	}

function abrevent2(url) {
	window.open(url,"",'menubar=no,toolbar=no, width=300, height=200');
}
function abrevent(url,vent) {
	window.open(url,vent,'menubar=no,toolbar=no, scrollbars=yes');
}