var off= 4;	
			var c=new Date()
			var c_mo = c.getMonth();
			var c_da = c.getDate();
			var HC_basetime = new Date ( 2008, 01, 01, 00, 00, 0 )/1000;
			//document.write(HC_basetime);
			document.write("\n");
			var HC_starttime	= (new Date ()/1000);	
			//document.write(HC_starttime);
			document.write("\n");
			var HCSps 		= 87.2025; //9.8
			var HCSstart	= 0;
			var HCSstart	= HCSps*(HC_starttime - HC_basetime);
			var cents = 1;				
			var cps05 = 100;				
			var IDs05 = Array('VBOTHC');	
			var OKs05 = Array(0);		
			var copies05 = 1;
			var sigmaall = 2395382806;

			function setup(CPS,t_cents,cs) {	
				 var nID = 1;	
				 if (cs != null) copies05 = cs;
				 if (0.1<CPS & CPS<100) cps05=CPS;
				 if (CPS<.1) cps05=.1; if (CPS>100) cps05=100;	
				 if (t_cents) cents = 1;	 
				 for (i=0; i<nID; i++) if (document.getElementById(IDs05[i])) OKs05[i]=1;
				 HC_Clock();
				}
			function HC_Clock()
			{	var secs = (new Date ())/1000 - HC_starttime;
				if (OKs05[0]) toID05(0, num2strC(HCSstart + HCSps*secs + sigmaall));
				setTimeout('HC_Clock();', 1000/cps05);
			}
			function toID05(N, x)
			{	document.getElementById(IDs05[N]).firstChild.nodeValue = x;
				if (copies05>1) 
					for (i=2; i<copies05+1; i++)
					{	v = document.getElementById(IDs05[N]+i);
						if (v) v.firstChild.nodeValue = x;
					}
			}
			function num2strC(xNum) 		
			{  
				var sign = "";
				var currency = "$";
			  if (xNum < 0)
			    { xNum = -xNum; sign = "-"; }		
			  xDols = Math.floor(xNum);					
			  var sDols = xDols.toString ();
			  DLen = sDols.length;
			  dCom = ""
			  while (DLen > 3)
			  { digits3 = sDols.substr(DLen-3, 3);		
			    sDols   = sDols.substr(0, DLen-3);		
				 DLen = DLen -3;
			  	 dCom = "," + digits3 + dCom;
			  }
			  dCom = sDols + dCom;

			  return currency + sign + dCom;	
			}
			setup(1,1)	