function MM_popupMsg(msg) { //v1.0
// <a href="http://www.somewebsite.com/" target="_blank" onclick="MM_popupMsg('Note: Your message goes here')">Link Text Here</a>
  alert(msg);
}

function notify(url)
// example: <a href="#" onclick="notify('http://www.somewebsite.com');">Link Text Here</a>
{
	agree=confirm("You have requested a link to the website of a third-party and, if you elect to continue, will be leaving our  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. This website is controlled and administered solely by the third-party.");
	if (agree){x=window.open(url);}
}

