function toggle(id){
  var obj = document.getElementById("pagemsg");
  obj.style.display =  "none" == obj.style.display ?"block" : "none";
}
function setAttention(){
  if (swfobject.hasFlashPlayerVersion("9.0.18"))toggle();
}
swfobject.addLoadEvent(setAttention)
