	function putFocus()
	{
		if (document.Login) {
			document.Login.Username.focus();
		}
	}

	function pop( picSrc )
	{
	    newWin = window.open('', '', 'height=450,width=425' + 'toolbars=no, scrollbars=yes' );
	    newWin.document.write("<html><head><link rel=stylesheet type=text/css href=/styles.css></head><body leftmargin='0' rightmargin='0'><table width=100% border='0' cellpadding='0' cellspacing='0'");
	    newWin.document.write("<tr><td width='100%'><p align=center><img src=" + picSrc + "><br><a href=# onclick='JavaScript:window.close()'>close window<a></td></tr>");
	    newWin.document.write("</table></body>");
	
	}
	
	function bigpop( picSrc )
	{
	    newWin = window.open('', '', 'height=550,width=550' + 'toolbars=no, scrollbars=yes' );
	    newWin.document.write("<html><head><link rel=stylesheet type=text/css href=/styles.css></head><body leftmargin='0' rightmargin='0'><table width=100% border='0' cellpadding='0' cellspacing='0'");
	    newWin.document.write("<tr><td width='100%'><p align=center><img src=" + picSrc + "><br><a href=# onclick='JavaScript:window.close()'>close window<a></td></tr>");
	    newWin.document.write("</table></body>");
	
	}
	
	function commentPop(url)
	{
	 window.open(url,'profile','width=450,height=370,scrollbars,resizable');
	}
	
	function GetE(s)
	{
		document.write(s);
	}
	
	function calcTime(offset) {
		// function from http://techrepublic.com.com/5100-3513_11-6016329.html?part=rss&tag=feed&subj=tr
	    // create Date object for current location
	    d = new Date();
	    
	    // convert to msec
	    // add local time zone offset 
	    // get UTC time in msec
	    utc = d.getTime() + (d.getTimezoneOffset() * 60000);
	    
	    // create new Date object for different city
	    // using supplied offset
	    nd = new Date(utc + (3600000*offset));
	    
	    // return time as a string
	    document.write( nd.toLocaleString() );

	}
		

