function openLink (url, name, message) 
{ 
ok = true; 
if (message) 
{
ok = confirm ("You are about to leave this Bayer HealthCare Pharmaceuticals Web site by opening a new page.\n\nThe site you are linking to is not controlled or endorsed by Bayer HealthCare Pharmaceuticals,\nand Bayer HealthCare Pharmaceuticals is not responsible for its content.");
}
if (ok) 
{
win = window.open(url,name,"width=600,height=450,scrollbars=1,status=1,screenX=0,left=50,screenY=0,top=50,channelmode=0,dependent=1,directories=1,fullscreen=0,location=1,menubar=1,resizable=1,toolbar=1");
//siteCat();
win.focus ();
}
}

function openLink2 (url, name, message) 
{ 
ok = true; 
if (message) 
{
ok = confirm ("You are now leaving the US promotional web site for Campath and are being\ndirected to the Bayer Schering Pharma international corporate web site.");
}
if (ok) 
{
win = window.open(url,name,"width=600,height=450,scrollbars=1,status=1,screenX=0,left=50,screenY=0,top=50,channelmode=0,dependent=1,directories=1,fullscreen=0,location=1,menubar=1,resizable=1,toolbar=1");
//siteCat();
win.focus ();
}
}

