function open_window (page,width,height) {
	var opciones="toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=yes, width="+width+", height="+height+", top=85, left=140";
	window.open(page,"",opciones);
}

