<!--
function Confirmation(){ 
	//This function should be OMITTED and replaced by the latter
	//to be in accordance with UWAS.
	var blnResponse = confirm("You are now leaving the Nationwide Insurance site. \n Information you have provided (i.e. for quote purposes) may not be saved. \n To proceed Click OK, otherwise Click Cancel.");
	if (blnResponse)
	{
		return true;
	}
	else
	{
		return false;
	}
}

function ConfirmLeave(strSiteName){
	var msg;
	msg = "You are now leaving the Nationwide Insurance site. To proceed to the " + strSiteName + " site, Click OK, otherwise, Click Cancel."
	var blnResponse = confirm(msg);
	if (blnResponse)
		{
			return true;
		}
	else
		{
			return false;
		}
	}
//-->