function moveFlashDiv(){	flashDiv = document.getElementById("flashBlock");	var agt=navigator.userAgent.toLowerCase();	if (typeof document.body.style.maxHeight != "undefined") {	  			if (agt.indexOf("msie") != -1) {			// IE 7			flashDiv.style.top = -1 +'px';			//flashDiv.style.left = 661-1+'px';		} else {		//mozilla, safari, opera 9			//flashDiv.style.top = -1+'px';			//flashDiv.style.left = 661-1+'px';		}		} else {		// IE6, older browsers		flashDiv.style.top = -1+'px';		flashDiv.style.left = -173-1+'px';	}	/*if (agt.indexOf("msie") != -1) {		flashDiv.style.top = -1+'px';		flashDiv.style.left = 550+'px';	} else {		flashDiv.style.top = -1+'px';		flashDiv.style.left = 550+'px';	}*/	//alert('flash top: ' + flashDiv.style.top);	}