function addZero(i)
{
	if (i<10)
	  {
	  i="0" + i;
	  }
	return i;
}
function PopupCenter(pageURL, title,w,h) {
var left = (screen.width/2)-(w/2);
var top = (screen.height/2)-(h/2);
var targetWin = window.open (pageURL, title, 'toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, copyhistory=no, width='+w+', height='+h+', top='+top+', left='+left);
} 
function runTimeout()
{
	 /* IF MS RUN OUT, THEN RESTART (MS) AND TAKE ONE FROM (S) */ 
	 if (milisec<=0){ 
		milisec=9 
		seconds-=1 
	 }

	/* IF (S) RUN OUT, THEN RESTART (S) AND TAKE ONE FROM (M) */  
	 if (seconds<0){
		seconds=59
		minutes-=1
	 }

	/* IF (M) RUN OUT...? */ 
	 if (minutes<0){ 
		document.getElementById( "TEH_CLOKZ" ).innerHTML="0:00.0"
		/*window.open('http://www.google.com','Windowname','width=600,top=0,left=0,resizable,height=400')*/
		PopupCenter('/expired-time-juncleanse.htm', 'Hello', 400, 300)
		/*myLightbox.activate();*/
	 }

	/* DISPLAY THE STUFF */ 
	 else
		if (minutes >= 0)
		{
			milisec-=1 
			document.getElementById( "TEH_CLOKZ" ).innerHTML=minutes+":"+addZero(seconds)+"."+milisec
			setTimeout("runTimeout()",100)
		}
}