function addBookmark(title,url) { 
if (window.sidebar) { 
window.sidebar.addPanel(title, url,""); 
} else if( document.all ) { 
window.external.AddFavorite( url, title); 
} else if( window.opera && window.print ) { 
return true; 
} 
}

function addthis_click() 
{ 
var aturl ='http://www.addthis.com/bookmark.php'; 
aturl+='?v=10'; 
aturl+='&pub='+'wrangler25x'; 
aturl+='&url='+encodeURIComponent(location.href); 
aturl+='&title='+encodeURIComponent(document.title); 
window.open(aturl,'addthis','scrollbars=yes,menubar=no,width=620,height=620,resizable=yes,toolbar=no,location=no,status=no,screenX=200,screenY=100,left=200,top=100'); 
return false; 
}

// *** Change this variable ***
// should be the URL to the cgi script
var path_to_cgi="http://www.areacodelocations.info/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,"FRIENDS01","STATUS=NO,TOOLBAR=NO,LOCATION=NO,DIRECTORIES=NO,COPYHISTORY=NO,MENU=NO,RESIZABLE=NO,SCROLLBARS=YES,TOP=40,LEFT=20,WIDTH=300,HEIGHT=330");
}

function neWin(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width=550,height=1024,left = 365,top = 0');");
}
