// JavaScript Document


function backgroundBodyIEFIX()
	{

		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;
		  
				if (winW % 2 == 0){}
				else {
					document.getElementById('flash_background').style. marginLeft = "-501px";
					
				}
		  
		  
		 }
		}
	}

