﻿function ShowDiv(divName, msg)
{
	document.getElementById(divName).style.display = "";
	alert(msg);
}
