﻿// Notify function
function notify(url)
{
	agree=confirm("You have requested a link to the website of a third-party and, if you elect to continue, will be leaving the KeyPoint Credit Union website. PLEASE NOTE that while visiting and using the third-party website, you will be subject to the third-party's own separate disclosures, privacy policy, security policy, website, and other terms and conditions. Said website is controlled and administered solely by the third-party. \n\nIf you click \"OK\", an external website that is owned and operated by a third-party will be opened \nin a new browser window. \n\nIf you click \"CANCEL\" you will be returned to our website.\n\nYour browser, by default, may block access to this 3rd party site. If this occurs, press the Ctrl key while clicking the \"OK\" button");
	if (agree){x=window.open(url);}
}

function clearText(thefield){
if (thefield.defaultValue==thefield.value)
thefield.value = ""
} 