function setPosition(){
	if(navigator.appName == "Netscape"){
		window.document.getElementById('posteRadio').style.left = (window.document.width - 1000) / 2 - 60 + "px";
	}else{
		x = (window.document.body.clientWidth - 1000) / 2 - 60;
		if(x < 0){
			x = 0;
		} //end if
		window.document.getElementById('posteRadio').style.left = x + "px";
	} // end if
} // end function
	