function openwindow (filename) {
	var formattext;
	formattext = "toolbar=no,menubar=no,scrollbars=yes,resizable=yes,statusbar=no,width=480,height=400";
	window.open(filename,"",formattext);
	return;
}

