JSAN.use('MochiKit.Logging');function alertBeta(content){var notification="======== Developer Error Box ======== \n";notification+="There was a problem in the Javascript:\n";notification+=content;alert(notification);}
function notify(content){var NOTIFY_BOX_ID="SGN_NOTIFY_BOX";var NOTIFY_CONTENT_ID="SGN_NOTIFY_CONTENT";document.getElementById("SGN_NOTIFY_BOX").style.display="block";if(!document.getElementById(NOTIFY_CONTENT_ID)||!document.getElementById(NOTIFY_BOX_ID)){var warning="The developer should have used the notify box at the top\nof the page, but the notifier page element with the\nIDs: '"+NOTIFY_BOX_ID+"' or '"+NOTIFY_CONTENT_ID+"' were not found.\n\nNotification: ";alertBeta(warning+content);return false;}
var notify_content=document.getElementById(NOTIFY_CONTENT_ID);notify_content.innerHTML=content;var notify_box=document.getElementById(NOTIFY_BOX_ID);notify_box.style.display="block";return true;}
