
function subWin(loc, titulo, ancho, alto)

{

options="toolbar=0,Status=0,menubar=0,scrollbars=0,resizable=0,location=0,directories=0,width=" + ancho + ",height=" + alto;
window.open(loc,titulo,options);

}

function subWinscroll(loc, titulo, ancho, alto)

{

options="toolbar=0,Status=0,menubar=0,scrollbars=1,resizable=0,location=0,directories=0,width=" + ancho + ",height=" + alto;
window.open(loc,titulo,options);

}