function orainternet(BrowserTime) {
var thisT;
var thisM;
var thisS;
var iT;
     thisT = BrowserTime.getHours();
	 thisM = BrowserTime.getMinutes();
	 thisS = BrowserTime.getSeconds();
	 iT = (thisT*3600 + thisM*60 +thisS)*10/864;
     //return '<a href="javascript:;" onClick="popUpInternetTime()">' + iT + '</a>';
     return iT;
}

