// *** เปลี่ยนค่าตัวแปร ***
// ทำ URL ไปยังไฟล์ tell_friend.cgi
var path_to_cgi="http://www.watkoh.org/cgi-bin/tell_friend.cgi";

// ตรงนี้ไม่ต้องเปลี่ยนแปลง
function tell_friend(){
path_to_cgi += '?url=' + escape(document.location);
window.open(path_to_cgi,"FRIENDS01","STATUS=NO,TOOLBAR=yes,LOCATION=NO,DIRECTORIES=NO,COPYHISTORY=NO,MENU=NO,RESISABLE=NO,SCROLLBARS=YES,TOP=40,LEFT=20,WIDTH=350,HEIGHT=380");
}
