function tell_friend (keyword, type, head)
{
var windowprops = "height=400,width=385,top="+ (screen.height - 500)/2+ ",left=" + (screen.width - 385)/2 +",toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=yes,resizable=yes";
if (type == 1){
	keyword = "tell_a_friend.asp?id=" + keyword + "&type=" + type + "&head=" + head;
} else {
	keyword = "../thainews/tell_a_friend.asp?id=" + keyword + "&type=" + type + "&head=" + head;
}
popuphelp = window.open(keyword,"MenuPopup",windowprops);
popuphelp.focus();
}

function print (keyword, type, url)
{
var windowprops = "height=400,width=600,top="+ (screen.height - 500)/2+ ",left=" + (screen.width - 600)/2 +",toolbar=0,location=0,directories=0,status=1,menubar=1,scrollbars=yes,resizable=yes";
if (type == 1) {
	keyword = "print_this.asp?id=" + keyword + "&type=" + type + "&url=" + url;
} else {
	keyword = "../thainews/print_this.asp?id=" + keyword + "&type=" + type + "&url=" + url;
}
popuphelp = window.open(keyword,"MenuPopup",windowprops);
popuphelp.focus();
}