

function exitSite(newlink){
	var message = "You are about to leave the Moody National Bank Web site.\nYou may click OK to proceed or Cancel to return.\n\nNote, that if you choose to proceed, a new browser window \nwill be opened.  To return to Moody National Bank's site, close the new \nbrowser window.\n\nMoody National Bank disclaims control or responsibility for\nthe content, products, and services provided by third party sites.\nWe do not endorse or guarantee the products, information or\nrecommendations provided by other sites.  Other third party sites\nmay have a privacy policy that is different than ours.  Additionally,\nother third party sites may provide less security than our web site.";
	iq = confirm(message);
	if (iq != "0"){
		window.open(newlink)
	}
}

/*



function exitSite(newlink){
	window.open('includes/NewWindow.cfm?' + newlink + ','_blank','width=' + 550 + ',height=' + 350 + ',resizable, toolbar=no,scrollbars=yes')
}		 

*/