function NSAlert(URL){
	var nl = '\n';
	var nsmsg = "You are about to leave the N Stenning & Co website." + nl + nl + "You may be going to a website where any linked advertisements may not comply with the" + nl + "MIAA (Medical Industry Association of Australia) Code of Practice.";
	nsmsg = nsmsg + nl + nl;
	nsmsg = nsmsg + "If this is your intention please click: "
	nsmsg = nsmsg + nl;
	nsmsg = nsmsg + "- OK to proceed or"
	nsmsg = nsmsg + nl;
	nsmsg = nsmsg + "- CANCEL to return to the current page"; 
	
	if (confirm(nsmsg)) {
		window.location = URL;	
		return false;
	}else{
		return false;
	}
	
}