function messageAlert(alertMessage,title,width,height,timeout){

if (!timeout)	timeout = false;

if (title == null || title == " ")
	 title = "Benefits Complete&reg";

var newWindow=open("","aWindowName","height=" + height + ",width=" + width + ",toolbar=no,scrollbars=yes,resizable=yes"); 
newWindow.opener = self;

var outputString='<html><head><title>' + title + '</title>';
outputString+='</head><body bgcolor="#FFFFFF">';
outputString+='<font size="-1">';
outputString+=alertMessage;
outputString+='</font><br><form><div align="CENTER">';

if (timeout == true) {
	outputString+='<script language="javascript">';	
	outputString+='setTimeout("self.close()",10000)';
	outputString+= '<\/script>';
}
else 	{
	outputString+='<input type="button" class="button" value="OK" onClick="self.close()">';
}

outputString+='</form></div></body></html>';
newWindow.document.open();
newWindow.document.write(outputString);
newWindow.document.close();

}
