//BEGIN Friend Referral Script

// *** Change this variable ***
// should be the URL to the cgi script
var path_to_cgi="http://www.worldzoo.com/cgi-bin/tell_friend.cgi";

// You dont need to change anything else
path_to_cgi += '?url=' + escape(document.location);

function tell_friend(){
window.open(path_to_cgi,"FRIEND","STATUS=NO,TOOLBAR=NO,LOCATION=NO,DIRECTORIES=NO,COPYHISTORY=NO,MENU=NO,RESIZABLE=NO,SCROLLBARS=YES,TOP=40,LEFT=20,WIDTH=300,HEIGHT=340");
}

//END Friend Referral Script

//BEGIN Bookmark Script

function bookmark(url, description) 
{
unsupported_browser="Please Manually Bookmark This Site. Users of most browsers may hit CTRL+D to add a bookmark." ;
var browser_agent=navigator.userAgent.toLowerCase();
var is_mac = (browser_agent.indexOf("mac")!=-1); 
if ((is_mac == false) && (navigator.appName=='Microsoft Internet Explorer'))
{
window.external.AddFavorite(url, description); 
}
else{
alert(unsupported_browser); 
}

window.status='';
return false
}


//END Bookmark Script