var i
function prog()
{
  document.getElementById("d1").innerHTML="";	document.getElementById("d2").style.width=0;  i=0;
  timedProg(); 
}

function timedProg()
{
   if (i<=(300))
   {
	    if (i>40){document.getElementById("d1").innerHTML=parseInt(i/3)+"%";}
      document.getElementById("d2").style.width=i+"px";
      // simulates some lengthy processing
      var j=0;		
      while (j<=100)
       	j++;  
        setTimeout("timedProg();", 5);
        i++;   
   }   
}

function Activate_popUp(URL) {
	window.open(URL, 'Progress', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width=600,height=100,left = 112,top = 84');
}