// *** Change this variable ***
// should be the URL to the cgi script
var path_to_cgi="15sendfriend.cgi";

// You dont need to change anything else
function tell_friend(){
path_to_cgi += '?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=NO,TOP=40,LEFT=40,WIDTH=390,HEIGHT=400");
}

