function saveJob(id1, id2){
var h =  $.ajax({
   type: "POST",
   url: "/saveJob.php",
   data: "js="+id1+"&jb="+id2,
    async: false
 }).responseText;
  $("#save").html(h);	
}

function recordView(id1,type){
var h =  $.ajax({
   type: "GET",
   url: "/record-click.php",
   data: "id="+id1+"&type="+type,
    async: false
 }).responseText;
}

$(document).ready(function(){
	$("#applyWindow").hide();
	$('#close').click(function(){
		$("#applyWindow").hide();
	});
});

