<!--
			image1 = new Image(); 
			image1.src = "loading.gif"; 
			
			function submitForm() {
  	        	var winW = 630, winH = 460;
            		if (parseInt(navigator.appVersion)>3) {
               			if (navigator.appName=="Netscape") {
                  			winW = window.innerWidth;
                  			winH = window.innerHeight;
						}
               		if (navigator.appName.indexOf("Microsoft")!=-1) {
                  		winW = document.body.offsetWidth;
						winH = document.body.offsetHeight;
               		}
            }
		      // Scroll to top of page if it's a Windows platform
			   	window.scroll(0,0);
			   	
				var winl = new Number( ( winW - 320) / 2 );
           		var wint = new Number( ( winH - 200) / 2 );
            	var obj=document.getElementById("process");
            	
			  	obj.style.top=wint.toString() + "px";
				obj.style.left=winl.toString() + "px";
				obj.style.backgroundColor="#EFD70E";
				obj.style.visibility='visible';
				
            	var html = "<table width='100%' height='100%' border='1' cellspacing='0' cellpadding='8' bordercolor='#000000'><tr><td valign='top' align='center'>" +
                       "<br><span class='uploadTitle'>Processing, please wait...</span><br><br>" +
                       "<span class='uploadInstructions'>This may take several minutes depending on the size " +
                       "of the file and the speed of your connection.</span><br><br><div align='center'>" + 
   			           "<img src='loading.gif'></div></td></tr></table>";
   			           
				obj.innerHTML = html;
				
				//alert( "Uploading Has Begun - Click OK" );
				
            return true;
         }
      // -->    