// JavaScript Document
function AbrirCentrado(theURL,winName,features,ancho,alto)
{
	neu=window.open(theURL,winName,features);
	neu.focus()
	neu.moveTo(Math.round((screen.availWidth-ancho)/2),Math.round((screen.availHeight-alto)/2))  
}

