 <!--   
  function Gourl(url,frame)   
  {       
          var time=new Date();
          var urlzx=url+"?dt="+time.getTime().toString();
          var iframe=document.getElementById(frame);   
          iframe.src="";   
          setTimeout(function()   
          {   
         iframe.contentWindow.document.write("<div style='height:100%;background-color:#ffffff; font-family:arial'>Loading...</div>");   
         iframe.contentWindow.document.close();   
         iframe.src=urlzx
		 },10);   
  }   
    //-->   