function ShowAlert(value)
{
	strMsgArray = value.split('~');
	strAlertMsg = "";
	for(i=0; i < strMsgArray.length;i++)
	{
		strAlertMsg += strMsgArray[i] + "\n";
	}
	alert(strAlertMsg);
}


