function bookmark_emp(val)
{
	var div_loading=document.getElementById("div_loading");
	div_loading.style.display="block";
	var today = new Date();
	today.setTime( today.getTime() );
	var url = "http://www.job1hit.com/employer/bookmark.php?cnd_id="+val+"&td="+today;
	xmlHTTP = createXMLHttpRequest();
	xmlHTTP.open("GET", url, true);
	xmlHTTP.onreadystatechange=function()
	{
		if(xmlHTTP.readyState == 4 && xmlHTTP.status ==200)
		{
			var var_msg = xmlHTTP.responseText;
			if(var_msg == "false1")
			{
				document.getElementById("div_loading").style.display = "none";
				alert("สำหรับสมาชิกเท่านั้นค่ะ");
			}
			else if(var_msg=="false2")
			{
				document.getElementById("div_loading").style.display = "none";
				alert("มีรายการนี้อยู่แล้วไม่สามารถเพิ่มได้อีกค่ะ");
			}
			else
			{
				document.getElementById("div_loading").style.display = "none";
				alert("ได้ทำการเพิ่มรายการเรียบร้อยแล้วค่ะ");
			}
			
		}
	};
	xmlHTTP.send('');
}
function send_message_inbox(cnd_id)
{
	//alert(cnd_id);
	window.open("../message-to-jobseeker/"+cnd_id+".html","mywindow","toolbar=no,status=no,scrollbars=no,location=no,menubar=no,directories=no,resizable=no,width=400,height=290");
}
