function SubmitDeleteForum() {
	if(confirm('ยืนยันการลบกระทู้นี้')){
		document.getElementById("frm_delete_forum").submit();
	}
}

function SubmitDeleteForumReply(topic_comment_id) {
	if(confirm('ยืนยันการลบความคิดเห็นนี้')){
		document.getElementById("topic_comment_id").value = topic_comment_id;
		document.getElementById("frm_delete_forum_reply").submit();
	}
}

function SubmitPin(fl) {
	if(fl==1) {
		if(confirm('ยืนยันปักหมุดกระทู้นี้')){
			document.getElementById("pin_fl").value = 1;
			document.getElementById("frm_pin_forum").submit();
		}
	}
	else {
		if(confirm('ยืนยันยกเลิกปักหมุดกระทู้นี้')){
			document.getElementById("pin_fl").value = 0;
			document.getElementById("frm_pin_forum").submit();
		}
	}
}

var dsi=14;
function funTime(p) {
if (p == "grow") {
dsi++;
}
else {
dsi--;
}
document.getElementById('content_resize').style.fontSize=dsi+'px';
}



function bookmark(url, sitename)
{
  ns="Use CTRL+D to bookmark this site."
  if ((navigator.appName=='Microsoft Internet Explorer') &&
    (parseInt(navigator.appVersion)>=4))
  {
    window.external.AddFavorite(url, sitename);
  }
  else if (navigator.appName=='Netscape')
  {
    window.sidebar.addPanel(sitename, url,"");
  }
  else
  {
    alert(ns);
  }
}
