function confirmOutsideURL(URLLink, TargetWinodw)
{
	answer = confirm("You are visiting a site outside of Hospital Authority.\n\nThis website is not under the control of Hospital Authority.\nAccordingly, Hospital Authority does not assume reponseibility for the content of other web sites.\n\nPlease press the OK button to continue")
	if (answer !=0) 
	{ 
		window.open(URLLink, TargetWinodw)
	} 
}

