function notifDialog(siBoxId, siTextAreaId){
   this.sBoxId = siBoxId;
   this.sTextAreaId = siTextAreaId;
   this.show = showNotifBox;    
}

function showNotifBox(siMsg){
   //For FF
   document.getElementById(this.sTextAreaId).defaultValue = siMsg;
   //For IE
   document.getElementById(this.sTextAreaId).value = siMsg;   
   
   return sm(this.sBoxId, csNotifDialogWidth, csNotifDialogHeight);
}