function openwindow()
{
	var opciones="toolbar=0,scrollbars=1,width=400,height=380,resizable=0,resizable=no";
	mi_ventana = window.open("sitemap.php","", opciones);

	var ancho = outerWidth;
	var x = (outerWidth - 500)/2;
	mi_ventana.moveBy(x, 100);
	mi_ventana.moveTo(x, 100);
}
	
	
function avisowindow()
{
	var opciones="toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,width=520,height=540";
	mi_ventana = window.open("aviso.php","",opciones);
	
	var ancho = outerWidth;
	var x = (outerWidth - 500)/2;
	mi_ventana.moveBy(x, 100);
	mi_ventana.moveTo(x, 100);
}
