
/* 
	Function to show the timer on form submit 
	(IE will stop playing the animated gif on form submit without this function) 
*/

function showTimer() 
	{
	var TimerImg = document.getElementById("timer");   
	TimerImg.innerHTML = '<div id="timer" style="display:block; color:#CC0000; text-align:center; border:2px solid #008001; position:absolute; width:150px; height:150px; margin: auto; z-index:10; background:#fff; top:50%; left:50%; margin-top:-75px; margin-left:-75px;"><img id="timerimg" src="graphics/general/timer.gif" width="95" height="95" alt="Processing" /><br/>Paypal is loading.</div>';    
	TimerImg.style.display = '';
	}
