/*
#region (C) PSI EZRE Enhancement 2005
//
// All rights are reserved. 
// Copy Rights Statement.
//
// Filename: COMMON.JS
//
#endregion
*/
///Functions used in the EZPopUpWindow.aspx
///**********************************************************
//Used to close the page
function WindowClose()
{				
	window.close();
	opener.close();	
}

///Based on querystring value, it displays the message.
function MessageToDisplay()
{
	var qs= new qsObject();
	var qsItem= qs.item("Msg"); 
	if(qsItem!= null)
	{	 
		return qsItem.value; 
	}
	return "";
}
///**********************************************************


///Functions used in the EZViewRequirement.aspx
///**********************************************************
///Check for Email Group Addess list empty value
function CheckGEmpty(lbl)
{
	var ctltxtn = document.getElementById("DgrGroup");
	var ctllbl = document.getElementById(lbl);
	if(trim(ctltxtn.value)== '--Select--')
	{
		ctllbl.innerText = "Select Group name";
		return false;
	}
	return true;	
}
///**********************************************************