function warn_on_leave(site) {
	var msg = "\nLinks which take you out of Abbott Laboratories worldwide \n"+
	"web site are not under the control of Abbott Laboratories, \n"+
	"and Abbott Laboratories is not responsible for the contents \n"+
	"of any such site or any further links from such site. Abbott \n"+
	"Laboratories is providing these links to you only as a \n"+
	"convenience, and the inclusion of any link does not imply \n"+
	"endorsement of the linked site by Abbott Laboratories.\n\n"+ 
	"Do you wish to leave this site?";
		if (confirm(msg)) {
			window.open(site);
		} else {
			return;
		}
	}




function warn_on_leave_redirect(site, target)
{
	    var msg = "\nThis link will take you out of the Abbott Nutrition Division of\n"+
        "Abbott Laboratories worldwide web site.  Links which take you out\n"+                                                                  
        "of Abbott Laboratories worldwide web site are not under the control of\n"+                                                             
        "Abbott Laboratories, and Abbott Laboratories is not responsible for the\n"+                                                            
        "contents of any such site or any further links from such site.  Abbott\n"+
        "Laboratories is providing these links to you only as a convenience, and\n"+
        "the inclusion of any link does not imply endorsement of the linked site\n"+
        "by Abbott Laboratories.\n\n"+ 
        "Do you wish to leave this site?";

    if(confirm(msg))
    {
		if(target == 'blank')
		{			
			window.open(site, site + '_popup');
			return true;
		}
		else
		{
			window.location = site;
			return true;
		}
    }
        
    else
        return false;
}
