<!--

function confirmAction()
{
	// Display a confirmation popup informing the user that they're leaving the site. Returns true if they click OK, false if they click Cancel.
	
	var confirmMsg = "You are about leave this website.\n\n";
	confirmMsg = confirmMsg + "*     the information you are about to be referred to may not comply with the Australian regulatory environment and you should refer to the Consumer Medical Information (CMI) for products to fully understand the terms of a product's registration in Australia;\n\n";
	confirmMsg = confirmMsg + "*     the intent of providing this material is informational and not as advice; and\n\n";
	confirmMsg = confirmMsg + "*     any information provided by this source should be discussed with your healthcare professional and does not replace their advice\n\n";
	confirmMsg = confirmMsg + "Do you wish to proceed?";
	
	return confirm(confirmMsg);
}

-->

