// JavaScript Document
//<meta http-equiv="Content-Type" content="text/html; charset=tis-620" />
function InsertEmo(text){
	var textBox=document.getElementsByName("edtText")[0];
	textBox.focus();
	textBox.value+=( '//' + text);
}

function alertvoteself(){
		alert("สมาชิกไม่สามารถให้คะแนนภาพของตัวเองได้!");
}

function votepict(imgID,point){
		//document.location="votepix.php?id="+imgID;
		var frm=document.getElementsByName("postForm")[0];
		var votePict=document.getElementsByName("votePict")[0];
		var voteScore=document.getElementsByName("voteScore")[0];
		votePict.value=imgID;
		voteScore.value=point;
		frm.action="vote.php";
		frm.submit();
}
