// JavaScript Document

function PostComments(){
	frm = window.document.frmComm;
	comm=frm.comm.value;
	if(comm!=''){
		frm.btnComm.value = 'Please wait...';
		frm.btnComm.disabled=true;
		sid = frm.sid.value;
		re = /&/gi;		newstr=comm.replace(re, "%26");
		url = '/post-comments.php?sid='+sid+'&com='+newstr;
		xmlhttpPost(url,'ncomm'); 
	}
}
function resComm(resp){
	frm.btnComm.value = 'Post Comment!';
	frm.btnComm.disabled=false;
	if (resp==0){
		alert('You needs to wait 30 sec to post another comment.');
	}else{
		frm.comm.value='';
		document.getElementById('listComm').innerHTML= resp;
		alert('Your comments has been posted!');
	}
}