// JavaScript Document



function newWindow(url,name,w,h) {
	wi= "width=" + w + ",height=" + h
	sb = ",scrollbars=yes"
	wi = wi+sb
	win = window.open(url,"",wi,sb);
}
