 function abrirVentana(ventana)
{

    miVentana=open(ventana,"","toolbar=no,directories=no,menubar=no,status=no,width=800,height=600,resizable=yes,top=100,left=40,scrollbars=yes");

     
   
 }    //fin function abrirVentana()  


function abrirMensaje(ventana)
 {
                
       //miVentana=window.showModalDialog("nodos/nodosMensajePopUpInc.php","Dialog Box Arguments # 1","dialogHeight: 310px; dialogWidth: 310px; dialogTop: 400px; dialogLeft: 400px; edge: Raised; center: Yes; help: No; resizable: No; status: No;");

       miVentana=open(ventana,"","toolbar=no,directories=no,menubar=no,status=no,width=310,height=200,resizable=no,top=400,left=400");
 }    //fin function abrirMensaje()  

					 
function abrirFoto(ventana,foto)
 {
          if (document.images) 
              ancho=document[foto].width;
				alto=document[foto].height;
				ancho="550";
				//alto="150";
		     

//        miVentana=open(ventana,"","toolbar=no,directories=no,menubar=no,status=no,resizable=yes,top=400,left=400,scrollbars=yes");
        
		 miVentana=open(ventana,"","toolbar=no,directories=no,menubar=no,status=no,width="+ancho+",resizable=yes,top=100,left=135,scrollbars=yes");
 }  

function cerrar()
{
	window.close();
	//window.history.go(-1);
	 //location.href='index.php';
}

 function abrir(ventana)
{

     if (window.screen)
		   {
				ancho=screen.width;
				alto=screen.height;
			}
			else
			{
					alto="600";
					ancho="800";
			  }



miVentana=open(ventana,"","toolbar=yes,directories=yes,menubar=no,status=no,width="+ancho+",height="+alto+",resizable=yes,top=0,left=0,scrollbars=yes");
			   

     
   
 }    //fin function abrirVentana()  



