// JavaScript Document
function notify(url)
{
	agree=confirm("You are leaving our website and linking to an alternate website not operated by us. We are not responsible for the content of the alternate website and do not represent either the third party or the current website user if the two enter into a transaction. Privacy and security policies may differ from those practiced by us. \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.");
	if (agree) {
	    window.open(url).focus();
	    void("");
	}
}