function openWindow(url, nombre, ancho, alto) {
	strancho=ancho;
	stralto=alto;
	if (ancho==null) strancho = 640;
	if (alto==null) stralto = 460;
	window.open(url,nombre,"resizable=yes,status=1,scrollbars=1,width="+strancho+",height="+stralto,false);
}

