//v1.0
//The following adds an alert box when a user click a link as specified in the next line.
//<a href="javascript:;" onclick="external_disclaimer('http://www.deluxe-check-order.com/ReorderHome.jsp')">Click Here</a>
function external_disclaimer(goHere){
	  message  = "North Valley Bancorp and subsidiaries has no control over information at any site hyperlinked\n";
	  message += "to from this site. North Valley Bancorp and subsidiaries makes no representation concerning\n";
	  message += "and is not responsible for the quality, content, nature, or reliability\n";
	  message += "of any hyperlinked site and is providing this hyperlink to you only as a\n";
	  message += "convenience. The inclusion of any hyperlink does not imply any endorsement,\n";
	  message += "investigation, verification or monitoring by North Valley Bancorp and subsidiaries of any\n";
	  message += "information in any hyperlinked site. In no event shall North Valley Bancorp and subsidiaries\n";
	  message += "be responsible for your use of a hyperlinked site.\n";
	  
		if (confirm(message)){
			window.open(goHere, '_blank');
		}
	}