function sendMessage(url,id,email) {
	var pageURL = url+"/ads-detail-message.php?id="+id+"&email="+email;
	var title = "KadNad";
	var w = 600;
	var h = 350;
	var left = (screen.width/2)-(w/2);
	var top = (screen.height/2)-(h/2);
	var targetWin = window.open(pageURL, title,'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no, resizable=no, copyhistory=no, width='+w+', height='+h+', top='+top+', left='+left);

}
function hideMessage(){
	window.close();;
}
function checkNull(){
	var txtFromName = document.getElementById('txtFromName');
	var txtFromEmail = document.getElementById('txtFromEmail');
	var txtMessage = document.getElementById('txtMessage');
	var txtCaptcha = document.getElementById('txtCaptcha');
	var error = 0;
	var msg = "";
	if(txtCaptcha.value == ""){
		txtCaptcha.setAttribute('className', 'inputError')
		error = 1;
		msg = "ผิดพลาด! กรุณากรอกตัวเลข/ข้อความในรูปภาพ";
	}
	if(txtMessage.value == ""){
		txtMessage.setAttribute('className', 'inputError')
		error = 1;
		msg = "ผิดพลาด! กรุณาใส่ข้อความที่ต้องการส่งหาเจ้าของโฆษณาของท่าน";
	}
	if(txtFromEmail.value == ""){
		txtFromEmail.setAttribute('className', 'inputError')
		error = 1;
		msg = "ผิดพลาด! กรุณาใส่ E-mail ของท่าน";
	}
	if(txtFromName.value == ""){
		txtFromName.setAttribute('className', 'inputError')
		error = 1;
		msg = "ผิดพลาด! กรุณาใส่ชื่อของท่าน";
	}
	if(error == 0){
		if(confirm("คุณต้องการยืนยันที่จะส่งข้อความใช่หรือไม่?")){
			return true;
		}else{
			return false;
		}
	}else{
		alert(msg);
		return false;
	}
}