$(document).ready( function() {
	
	/**
	 *	external page popup.
	 *	@use: <a href="blah.com" rel="external">This will open a pop up</a>
	 */
	$('A[rel="external"]').click( function() {
    	window.open( $(this).attr('href') );
        return false;
    });
   
});

function linkaway() {
   var msg = "";
   msg += "You are now leaving American Suzuki Motor Corporation's Website, and entering an independent dealer site.\n";
   msg += "\n";   
   msg += "American Suzuki is not responsible for the content presented by any independent Suzuki dealer, including advertising claims, special offers, illustrations, names or endorsements.\n";
   msg += "\n";   
   msg += "Thank you for visiting our website. Please visit again soon.\n";
   return confirm(msg);
}