// JavaScript Document
// needed for outbound links 

function go_out_ext(url)
		{
			var strWarning = "You are about to leave www.whoopingcough.com.au and go to an external website. \n\r\nThe information a reader is about to be referred to may not comply with the Australian regulatory requirements. Further information relevant to the Australian environment is available from the company.";
		
			if (url!="")
			{
			  if (confirm(strWarning))
			  {
				window.open(url);
			  }
			}
		}
