	function popWin(url,title,name,w,h,l,t,s) {
		if(!name) name='win';
		if(!h) h=400;
		if(!w) w=512;
		if(!l) l=200;
		if(!t) t=200;
		if(!s) {
			s='No';
			r='No';
			}
		else {
			s='Yes';
			r='Yes';
			}
		newWin = window.open(url,name,'toolbar=No,menubar=No,left='+l+',top='+t+',width='+w+',height='+h+',resizable=' + r + ',scrollbars=' + s + ',status=No,location=No');
		}

	function ElementChCls(oid,cls) {
		document.getElementById(oid).className=cls;
		}
