// Codigo Javascript




function abrir_ventana_1(url)
{
newWindow = window.open(url,"subWind",
"status,height=450,width=600,top=150,left=250,scrollbars=yes");
newWindow.focus( );
};



function abrir_ventana_2(url)
{
newWindow = window.open(url,"subWind",
"status,height=600,width=450,top=150,left=250,scrollbars=yes");
newWindow.focus( );
};