﻿window.onload = function(){
	reloadPage(180);
}

function refresh() {
	window.location=window.location.href;
	//window.location.reload();
}

function reloadPage(sec) {
    setTimeout(refresh, sec*1000);
}

function submitform()
{
  document.Form.submit();
}



