<!--
function fncConfirmDeleteEvent(eventname)
	{
	var agree=confirm('Are you sure you want to delete the "'+eventname+'" event?\n\nNOTE: This cannot be undone!');
	if (agree)
		return true;
	else
		return false;
	}
function fncConfirmDeletePage(pagetitle)
	{
	var agree=confirm('Are you sure you want to delete the "'+pagetitle+'" page?\n\nNOTE: This cannot be undone!');
	if (agree)
		return true;
	else
		return false;
	}
function xfncShowProgress()
	{
	strAppVersion = navigator.appVersion;
	if (document.frmUpload.txtFile1.value != "" || document.frmUpload.txtFile2.value != "" || document.frmUpload.txtFile3.value != "" || document.frmUpload.txtFile4.value != "")
		{
		if (strAppVersion.indexOf('MSIE') != -1 && strAppVersion.substr(strAppVersion.indexOf('MSIE')+5,1) > 4)
			{
			if( strAppVersion.indexOf("Macintosh") != -1 && strAppVersion.charAt(0) >= 3 )
				{
				window.open('<%=barref%>&b=NN','','width=370,height=115', true);
				}
			else
				{
				winstyle = "dialogWidth=385px; dialogHeight:140px; center:yes";
				window.showModelessDialog('<%=barref%>&b=IE',null,winstyle);
				}
			}
		else
			{
			window.open('<%=barref%>&b=NN','','width=370,height=115', true);
			}
		}
	return true;
	}
function ShowProgress()
{
  strAppVersion = navigator.appVersion;
	if (document.frmUpload.txtFile1.value != "" || document.frmUpload.txtFile2.value != "" || document.frmUpload.txtFile3.value != "" || document.frmUpload.txtFile4.value != "")
  {
    if (strAppVersion.indexOf('MSIE') != -1 && strAppVersion.substr(strAppVersion.indexOf('MSIE')+5,1) > 4)
    {
      winstyle = "dialogWidth=385px; dialogHeight:140px; center:yes";
      window.showModelessDialog('<%=barref%>&b=IE',null,winstyle);
    }
    else
    {
      window.open('<%=barref%>&b=NN','','width=370,height=115', true);
    }
  }
  return true;
}
-->
