function showLeaveSiteWarning(str_URL, bol_newWindow, str_message)
	{
		alert (str_message);

		if(bol_newWindow == '' || bol_newWindow == 'false')
		{
			document.location.href=str_URL;
		}else{
			splashWin = window.open(str_URL,'newWindow', 'fullscreen=0,toolbar=1,location=1,directories=1,status=1,menubar=1,scrollbars=1,resizable=1');
		}

	}
