	//Showing status "Submitting..."
	var IE = document.all;
	var PosTimer;	
	var flag=false;		
	function setSubmit(){
		
		if (IE) 
		{
			document.body.onscroll = stickSubmit;
		}
		else 
		{
			stickSubmitLoop();
		}				
	}
	
	function stickSubmit() {
		var y = document.body.scrollTop;
		var s = document.getElementById('busy').style
		s.top = y + 3;
		s.left = 890;
	}	
	
	function stickSubmitLoop() {
		if (PosTimer)
		{
			clearTimeout(PosTimer);
		}
		stickSubmit();
		PosTimer = setTimeout("stickSubmitLoop()", 10);
	}	
	
	function showBusy() { 
		
		Element.show('busy');
		
	}
	
	function hideBusy() { 
		
		Element.hide('busy');
	}	
	function showFGBusy() { 
	
		Element.show('fgbusy');
	}
	
	function hideFGBusy() { 
		
		Element.hide('fgbusy');
	}	
	
	function showquoteBusy() 
	{	
		document.getElementById('send').disabled = true;
		Element.show('busy');
		
	}
	function showloginBusy() { 
		document.getElementById('results').value = "";
		Element.show('busy');
		document.getElementById('fgresults').style.display = "";
		
	}
	
function tell_friend()
  { url=window.location.href;
  	document.getElementById('url').value=url;
  	document.getElementById('title').value=document.title;
  }
	
	
	