<!--
	// -------------------------------------------------
	// custom functions 
	// -------------------------------------------------

	function PopupPrivacy(title,url,width,height) { 
		var s_url='/pages/popupDiv.aspx?title='+title+'&url='+url;
		
		if (width==null) width=680;
		if (height==null) height=500;
		
		return CL_popupDiv(s_url, width, height, null, 100);		
	}
	
	function ShowError(index)
	{
		alert(messages);
	}
	
	function isReturn(oEvent)
	{
		if (!oEvent)
			oEvent = window.event;

		if (oEvent.which)
		{
			keyCode = oEvent.which;
		}
		else if (oEvent.keyCode)
		{
			keyCode = oEvent.keyCode;
		}
		
		return keyCode == 13;
	}	
//-->

