// JavaScript Document
	<!--
	function confirmExit() 
	{ 
		var ans; 
		ans = window.confirm('NOTICE: You are entering a website that is not a Public Service entity website. Do you want to continue?');
		if (ans)
		{
			return true;
		}
		else		
		{
			return false;
		}
	}	
	
	function warn()
	{
		alert('NOTICE: You are leaving the website of Citadel Insurance plc.');
	}
	-->		
