function popupDisclaimer(url,windowName)
{
	var agree = confirm('You are now leaving the Gain web site. Have a great-smelling day and come back soon.');
	if(agree)
	{
		if (window.open(url,windowName))
    { return false; }
    else {return true; }
	}
	else
	{
		return false;
	}
}

