// JavaScript Document
$(document).ready(function()
  {
   var refreshId = setInterval(function() 
   {
	 $('#timeval').load('tabless.php?randval='+ Math.random());
   }, 1000);
   $("#stop").click(function() 
   {
   	clearInterval(refreshId);
   });
  });
