// FUNCION de ventana nueva
function newWindow(url,nombre,w,h,s) 
{ 
props = "width=" + w +",height=" + h +",scrollbars=" + s
aucWindow = window.open(url, nombre, props)
aucWindow.focus() 
} 
//-->