	function ShowImage() {
		/* 
		Shows an animated spinny wheel thingy ala osx
		Version 1.0 | by peter graves
		*/
		pwimage = document.getElementById("imgRing");
		frmbutton = document.getElementById("Submit");
		frmbutton.style.visibility = 'hidden';
		pwimage.style.visibility = "visible"; 
		pwimage.style.display= "inline";
		setTimeout('pwimage.src = "/images/loading2.gif"', 200); 
		}
		

		function openCenterWin(url,theWidth,theHeight){
		var theTop=(screen.height/2)-(theHeight/2);
		var theLeft=(screen.width/2)-(theWidth/2);
		var features='height='+theHeight+',width='+theWidth+',top='+theTop+',left='+theLeft+",scrollbars=no";
		theWin=window.open(url,'',features);
		}
		
		function openIt() {
			openCenterWin('/assets/wedcam/popup.asp',640,550);
		}