// Bookmark script with browser specific messages for non-IE users

function bookmark(url, description)
{
netscape="We're sorry, but Firefox, Netscape and Safari users must bookmark us manually."
if (navigator.appName=='Microsoft Internet Explorer')
{
window.external.AddFavorite(url, description);
}
else if (navigator.appName=='Firefox')
{
alert("We're sorry, but Firefox, Netscape and Safari users must bookmark us manually.");
}
else if (navigator.appName=='Netscape')
{
alert("We're sorry, but Firefox, Safari users must bookmark us manually.");
}
else if (navigator.appName=='Opera')
{
alert("We're sorry, but Opera users must bookmark us manually.");
}
else if (navigator.appName=='Safari')
{
alert("We're sorry, but Firefox, Netscape and Safari users must bookmark us manually.");
}
}

// Email page script

function mailpage()
{
mail_str = "mailto:?subject=AT Conference - Conference Call Services";
mail_str += "&body=I thought you might want to look at AT Conference's services";
mail_str += ". Go to this url for more info: " + location.href;
location.href = mail_str;
}

