//Refresh Page - Automatic by 
// From JavaScript Source!! http://javascript.internet.com and http://javascriptsource.com
/* Page reloads: 1 minute = 60000 milliseconds.
	1 hour = 60 minutes = 60 * 60000
  1 day = 24 hours = 24 * 60 * 60000
*/
//Rename as refresh1.js by Ong Ying Ying

function reFresh() {
  location.reload(true)
}
window.setInterval("reFresh()",86400000);

