// <Identificacion>
// <Copyleft>Dr. Gabriel Guerrero</Copyleft>
// <CopyleftCorreo>saXsa S.C., saxsa2000@yahoo.com</CopyleftCorreo>
// <CopyleftLeyenda>Copyleft significa:: "Puedes copiarlo pero no te adornes",  Es decir, "copiar y dar credito"</CopyleftLeyenda>
// <Dedicacion>WebGestiones</Dedicacion>
// <Instancia>DerechosCulturales</Instancia>
// <Nombre>ggAbreVentana.js</Nombre>
// <Version>version 1.0</Version>
// <FechaCreacion>15/septiembre/2008</FechaCreacion>
// <FechaModificacion>15/septiembre/2008</FechaModificacion>
// </Identificacion>

function ggAbreVentana(CadenaURL, NombreVentana)
{
defaultStatus   = "WebGestiones powered by saXsa, copyleft saxsa2000\@yahoo.com" ;

anchoVentana = screen.availWidth   - 50   ;
altoVentana  = screen.availHeight  - 50 ;

Ubicacion    = '' ;

if (navigator.appName == 'Microsoft Internet Explorer' && 
        window.screen.width <= 1024 ) {
Ubicacion = 'left=20,top=0' ;
}

if (navigator.appName == 'Microsoft Internet Explorer' && 
        window.screen.width <= 800 ) {
Ubicacion = 'left=20,top=0' ;
}

if (navigator.appName == 'Netscape' && 
        window.screen.width <= 1024 ) {
Ubicacion = 'ScreenX=20,top=0' ;
}

if (navigator.appName == 'Netscape' && 
        window.screen.width <= 800 ) {
Ubicacion = 'ScreenX=30,top=0' ;
}


       hWin=window.open(CadenaURL,NombreVentana,"toolbar=no,status=yes,location=no,directories=no,menubar=no,resizable=yes,scrollbars=yes,copyhistory=yes,width=" + anchoVentana + ",height=" + altoVentana + ","+ Ubicacion);

//       hWin=window.open(CadenaURL,NombreVentana,"toolbar=no,status=yes,location=no,directories=no,menubar=no,resizable=yes,scrollbars=yes,copyhistory=yes,width=" + anchoVentana + ",height=" + altoVentana + ",left=0,top=0");

//       hWin=window.open(CadenaURL,NombreVentana,"toolbar=no,location=no,directories=no,menubar=no,resizable=yes,status=yes,scrollbars=yes,copyhistory=yes,width=" + anchoVentana + ",height=500,left=0,top=0");

//       hWin=window.open(CadenaURL,NombreVentana,"toolbar=no,location=no,directories=no,menubar=no,resizable=yes,status=yes,scrollbars=yes,copyhistory=yes,width=700,height=500,left=0,top=0");

//       hWin=window.open(CadenaURL,NombreVentana,"toolbar=no,location=no,directories=no,menubar=no,resizable=yes,status=no,scrollbars=yes,copyhistory=yes,width=900,height=600");

}


/////////Fin programa js
