/*This code has been developed by Gurvinder Singh Bains at 4biz Group, LLC
Feel free to play around with this code to accomodate your changes. 
Please Do Not remove this section.
**********************************************************************
This Code finds the anchor tags and adds the onclick confirmation attribute if the link takes the visitor outside the website.
*/

$(document).ready(function(){
    $("a[href^='http']").click(function(){
        return confirmbox();
    });
});
    
function confirmbox()
	{
		var Answer;
		Answer = confirm("You are about to leave the site...\n\nHyperlinks to other Internet sites are furnished solely as a convenience to the visitors of the Wethersfield Chamber of Commerce.\n\nWe have made a limited attempt to determine that these links function correctly. However, linked sites are not under the control of the Wethersfield Chamber of Commerce, and we are not responsible for the contents of any linked site or any link contained in a linked site. \n\nPress OK to continue. ");
		
		if(Answer)
			return(true);
		else
			return(false);
	}