function Despliega(strPagina, strNombre_Ventana, iWidth, iHeight)
{
//	alert(((screen.availWidth - iWidth)/2);
	window.open(strPagina, strNombre_Ventana, "width=" + iWidth + ",height=" + iHeight + ",left=" + (screen.availWidth - iWidth)/2 + ", scrollbars=yes, top=" + (screen.availHeight - iHeight)/2);
}
function Despliega2(strPagina, strNombre_Ventana, iWidth, iHeight)
{
//	alert(((screen.availWidth - iWidth)/2);
	window.open(strPagina, strNombre_Ventana, "width=" + iWidth + ",height=" + iHeight + ",left=" + (screen.availWidth - iWidth)/2 + ", scrollbars=no, top=" + (screen.availHeight - iHeight)/2);
}

