$(document).ready(function(){
	
	var cn_alert = "You are now leaving the loadpoint.co.uk domain. The website you are visiting is not maintained by Loadpoint Ltd or any subsidiary of Loadpoint Ltd. Loadpoint Ltd can accept no responsibility for the content.\n\nWe wish you safe and pleasant browsing.\n\nPlease select OK to continue.";
	
	$('.link_to_chinese_rep').click(function(event){
		if (confirm(cn_alert))
		{
			return true;
		}
		else
		{
			event.preventDefault();
		}
		return false;
	});
});