//needs to be called on window.onload
function moveit(){
	
	var height = (document.all && document.body) ? document.body.clientHeight : window.innerHeight;
	var width  = (document.all && document.body) ? document.body.clientWidth : window.innerWidth;
	//var myScroll = (document.all) ? document.body.scrollTop : window.pageYOffset;
	var myScroll = document.documentElement.scrollTop?document.documentElement.scrollTop:(document.body?document.body.scrollTop:window.pageYOffset);
	var objCSS = document.getElementById('warningSwfObj');
	
	if(objCSS==null) return;
	
	newtop = (height + myScroll) - height/2 -200;
	
	

	objCSS.style.top = newtop + "px";
	objCSS.className = "warning_pos";
}

setInterval(function(){moveit();}, 100);