// JavaScript Document
function showInfo(msg) 
{
	Dialog.alert("<font color='#009900' style='font-family:Arial, Helvetica, sans-serif; font-size:11px'><b>"+msg+"</b></font>", 
				{windowParameters: 
						{className: "alphacube", width:300, height:100, zIndex: 100, resizable: true, title: "Valid Message"}, 
						okLabel: "OK", 
						ok:function(win) {return true}
				}
				);
}
function showError(msg) 
{
	Dialog.alert("<font color='#FF3300' style='font-family:Arial, Helvetica, sans-serif; font-size:11px'><b>"+msg+"</b></font>", 
				{windowParameters: 
						{className: "alphacube", width:300, height:100, zIndex: 100, resizable: true, title: "Error Message"}, 
						okLabel: "OK", 
						ok:function(win) {return true}
				}
				);
}
