// JavaScript Document<!--var count=11;var timecodedivlayer;function countdown(){ //count--; changelayer_content(count);if (count>0){ Id = window.setTimeout("countdown()",1000); } else{window.close();}}	function hhmmss (timeinseconds) {hh = Math.floor(timeinseconds/(60*60));mm = Math.floor( (timeinseconds - (hh*(60*60)))/60)if (mm < 10) {mm = "0" + mm;}ss = timeinseconds - (hh*(60*60) + mm*60);if (ss < 10) {ss = "0" + ss;}return hh + ":" + mm + ":" + ss;}function changelayer_content(counter){doit="no";if (document.movie2.GetPluginStatus() == "Complete") {doit="yes";}if (document.movie2.GetPluginStatus() == "Playable") {doit="yes";}if (doit == "yes")	{	curtime = hhmmss(Math.round(document.movie2.GetTime() / document.movie2.GetTimeScale()));	tottime = hhmmss(Math.round(document.movie2.GetDuration() / document.movie2.GetTimeScale()));	msgstring = curtime + " of " + tottime;		}	else	{	msgstring = "Loading...";	}if(document.layers){//thisbrowser="NN4";timecodedivlayer = document.layers[0];timecodedivlayer.document.open();timecodedivlayer.document.write(msgstring);timecodedivlayer.document.close();                     } if(document.all){//thisbrowser="ie"timecodedivlayer = document.all["timecodediv"];timecodedivlayer.innerHTML=msgstring;                      }if(!document.all && document.getElementById){//thisbrowser="NN6";timecodedivlayer = document.getElementById("timecodediv");timecodedivlayer.innerHTML =msgstring; }}// -->
