﻿		function checkTime(i)		{		if (i<10) 		  {		  i="0" + i;		  }		return i;		}		var d = new Date();		document.write(checkTime(d.getUTCHours() + 1));		document.write(":");		document.write(checkTime(d.getUTCMinutes()));		//W3Schools for code. +1 is for time difference to UTC, function checktime is to display a 0 first for numbers less than 10, enables 24 hour clock to makes sense without AM or PM.//