function messageBox(errorMessage,ok,cancel,messageBoxId)
{
  var arr=new Array();
  arr["message"]=errorMessage;
  arr["ok"]=ok;
  arr["cancel"]=cancel;
  var returnValue=window.showModalDialog(messageBoxId+".htm",arr,"dialogWidth=300px;dialogHeight=150px;status=0;help=0");
  if(returnValue || returnValue!=null)
  {
		return true;
  }
  else
  {
  		return false;
  }
}

