// *** Change this variable ***
// should be the URL to the cgi script
//var path_to_cgi="http://www.searchenginewizard.net/cgi-bin/tell_friend.cgi";
var tellFriendPath = "/amsoillogin/TellFriend.aspx"

// You dont need to change anything else
function tell_friend(){
tellFriendPath += '?url=' + escape(document.location);
//window.open(path_to_cgi,"FRIENDS01","STATUS=NO,TOOLBAR=NO,LOCATION=NO,DIRECTORIES=NO,COPYHISTORY=NO,MENU=NO,RESISABLE=NO,SCROLLBARS=YES,TOP=40,LEFT=20,WIDTH=300,HEIGHT=370");
window.open(tellFriendPath,"FRIENDS01","STATUS=NO,TOOLBAR=NO,LOCATION=NO,DIRECTORIES=NO,COPYHISTORY=NO,MENU=NO,RESISABLE=NO,SCROLLBARS=YES,TOP=40,LEFT=20,WIDTH=600,HEIGHT=370");
//window.location.href=tellFriendPath
}
