function reloadIt() {
var clocktime = new Date();
var utchours = clocktime.getUTCHours();
var utcminutes = clocktime.getUTCMinutes();
var utcseconds = clocktime.getUTCSeconds();
var utcyear = clocktime.getUTCFullYear();
var utcmonth = clocktime.getUTCMonth()+1;
var utcday = clocktime.getUTCDate();

if (utchours <10) { utchours = "0" + utchours }
if (utcminutes <10) { utcminutes = "0" + utcminutes }
if (utcseconds <10) { utcseconds = "0" + utcseconds }
if (utcmonth <10) { utcmonth = "0" + utcmonth }
if (utcday <10) { utcday = "0" + utcday }

var utctime = utcyear + utcmonth + utcday;
utctime += utchours + utcminutes + utcseconds;
x = utctime

isNew = self.location.href
if(!isNew.match('#','x')) {
self.location.replace(isNew + '#' + x)
}
}
