
<!-- insertar al principio de la pagina -->

var finestra
function abreVentana(pagina, tipo){
if(eval('finestra')){
    eval('finestra' + ".close()")
    }
if (tipo == 'V')
{	
finestra =window.open(pagina,'ventana',  'height=700 width = 490 top = 0 left = 0' );
}

if (tipo == 'H')
{	
finestra =window.open(pagina,'ventana',  'height=490 width = 700 top = 0 left = 0' );
}

if (tipo == 'M')
{	
finestra =window.open(pagina,'ventana',  'height=410 width = 540 top = 0 left = 0' );
}

if (tipo == 'C')
{	
finestra =window.open(pagina,'ventana',  'height=300 width = 800 top = 0 left = 0' );
}


}
 