<!--

	function NoEnter()
		{
			return !(window.event && window.event.keyCode == 13);
		}

//============================================================================================================================

//News Bar clock...

	function tS()
		{
			x=new Date();
			x.setTime(x.getTime());
			return x;
		}
		
	function lZ(x)
		{
			return (x>9)?x:'0'+x;
		}
		
	function y2(x)
		{
			x=(x<500)?x+1900:x;
			return String(x).substring(2,4)
		}
		
	function dT()
		{
			document.getElementById('clock').innerHTML=eval(oT);
			setTimeout('dT()',1000);
		}
		
	var dN=new Array('Sun','Mon','Tue','Wed','Thu','Fri','Sat');
	var mN=new Array('Jan','Feb','Mar','Apr','May','Jun','Jul','Aug','Sep','Oct','Nov','Dec');
	var oT="lZ(tS().getHours())+':'+lZ(tS().getMinutes())+'&nbsp;&nbsp;|&nbsp;&nbsp;'+tS().getDate()+' '+mN[tS().getMonth()]+' 20'+y2(tS().getYear())"
		
//============================================================================================================================

//Window pop-ups...

	function window_popup(fieldname, URL, bars, wid, hei, posX, posY)
		{
			var strAttributes = 'help=no, status=no,  location=no , resizable=no, toolbar=no, menubar=no, scrollbars=' + bars;
			strAttributes += ', width=' + wid + ', height=' + hei + ', top=' + posY + ', left=' + posX;
			
			var strURL = URL + '?fieldname=' + fieldname;   //pass the field name to the new window so it can be identified on close for updating...
			
			new_win = open(strURL, 'new_win', strAttributes);
			new_win.opener = self;
		}
 
	function window_popup_return(fieldname, fieldvalue)		//update the originating page (opener)...
		{	
			document.getElementById(fieldname).value = fieldvalue;
			ComboChanged();
			new_win.close();
		}

//-->