	function openwin(sURL,h,w) {
 		var newWindow = window.open(sURL,"","status,height="+h+",width="+w);
	}

	function openwinScroll(sURL,h,w) {
 		var newWindow = window.open(sURL,"","status, scrollbars, height="+h+",width="+w);
	}
	function openwinResize(sURL,h,w) {
 		var newWindow = window.open(sURL,"","status, scrollbars, resizable, height="+h+",width="+w);
	}

