// JavaScript Document
function abreVentana(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
function redimensionar(ancho,alto){
  this.resizeTo(ancho+30,alto+100)
  this.moveTo((screen.width-ancho)/2,(screen.height-alto)/2) //centra la ventana. Eliminar si no se quiere centrar el popup
}
function cerrar(){
	window.close();
}
function InsertText(insTexte){
  var text = insTexte;
  alert(insTexte);
  opener.document.form1.portada.value = text;
}