// JavaScript Document

function abrirVentana(id)
{
  var pagina;
  
  pagina = 'detalle.php?idDetalle=' + id;
  ventana= window.open (pagina,'ventana_sec',   'scrollbars=no,status=no,resizable=no,toolbars=0,location=0,directories=0,menubar=0,width=510,height=530');
  //ventana.document.open();
  //ventana.creator=window;
  //contenido="<html><title></title><body>asdfadsf</body></html>"
  //ventana.document.write(contenido);
  //ventana.document.close();
  //ventana.creator=window;
 
	
}

//  var cabecera= " ";
//  cabecera+= "<html><head><title>El Senado de Espa&ntilde;a: Otras Web de Inter&eacute;s</title></head>";
  //  cabecera+= "fghdfghdfghdfghdfgh";
  //cabecera+= "</body></html>";

