	function newwindow(url,scrollbar,width,height) {
		properties = "scrollbars=" + scrollbar + ",resizable=yes,history=no,toolbar=no,location=0,directories=0,status=0,width=" + width + ",height=" + height;
		window.open (url, "popup", properties)
	}
	function newwindow2(url,scrollbar,width,height,status) {
		properties = "scrollbars=" + scrollbar + ",resizable=yes,history=no,toolbar=yes,location=0,directories=0,status=" + status + ",width=" + width + ",height=" + height;
		window.open (url, "popup", properties)
	}
	function featureWinClose() {
		window.parent.close()
	}
