// JavaScript Document

function win_open(n,w,h){

	fn=n+".html";
	parameters="directories=0, location=0, menubar=0, status=0, toolbar=0, scrollbars=auto, resizable=1, width="+w+", height="+h;
	window.open(fn,"new",parameters);
}
