//------------------------------------------------------------------------------------
function strTrim(tmpStr)
{
	tmpStr = tmpStr.replace(/^\s+/,"");//remove leading
	tmpStr = tmpStr.replace(/\s+$/,"");//remove trailing
	return tmpStr;
}
//------------------------------------------------------------------------------------
function trimFields()
{
	for(var i=0; i < obj.elements.length; i++)
	{
		if(obj.elements[i].type == "text" || obj.elements[i].type == "textarea" || obj.elements[i].type == "password")
		{
			obj.elements[i].value = strTrim(obj.elements[i].value);
		}
	}
}
//------------------------------------------------------------------------------------
function chkEmail(tmpStr)
{
	var email_pat = /^[a-z][a-z0-9_\.\-]*[a-z0-9]@[a-z0-9]+[a-z0-9\.\-_]*\.[a-z]+$/i;
	return(email_pat.test(tmpStr));
}
function confirmation()
{
	if(confirm("Important Notice \n\nYou have selected a link that will take you to a website which is outside of this website. Products or services from other entities are not endorsed, nor is this site responsible for information contained in their Internet sites.\n\n\t\t\t\t\t\t\tDo you want to continue?"))
	{
		window.open('http://www.cnyagency.com','mywindow','toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,scrollbars=yes,copyhistory=yes,		resizable=yes')
		return true;
	}
	return false;
}

function confirmationSeminars()
{
	if(confirm("Important Notice \n\nYou have selected a link that will take you to a website which is outside of this website. Products or services from other entities are not endorsed, nor is this site responsible for information contained in their Internet sites.\n\n\t\t\t\t\t\t\tDo you want to continue?"))
	{
		window.open('http://www.saanys.org/events/','mywindow','toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,scrollbars=yes,copyhistory=yes,		resizable=yes')
		return true;
	}
	return false;
}































