function get() {
	void(0);
}

function TagJob(jobID) {
	var xmlHttp;
	try { xmlHttp=new XMLHttpRequest(); }		// Firefox, Opera 8.0+, Safari
	catch (e) {
		try { xmlHttp=new ActiveXObject("Msxml2.XMLHTTP"); }	// Internet Explorer
		catch (e) {
	  		try { xmlHttp=new ActiveXObject("Microsoft.XMLHTTP"); }
	  		catch (e) {
	      	alert("Your browser does not support AJAX!");
	      	return false;
			}
		}
	}
	xmlHttp.onreadystatechange=function() {
		if (xmlHttp.readyState==4) {
   		//document.myForm.time.value=xmlHttp.responseText;
			document.getElementById('tag'+jobID).innerHTML = xmlHttp.responseText;
		}
	}
	xmlHttp.open("GET","ajax_TagJob.php?id="+jobID,true);
	xmlHttp.send(null);
}
function UnTagJob(jobID) {
	var xmlHttp;
	try { xmlHttp=new XMLHttpRequest(); }		// Firefox, Opera 8.0+, Safari
	catch (e) {
		try { xmlHttp=new ActiveXObject("Msxml2.XMLHTTP"); }	// Internet Explorer
		catch (e) {
	  		try { xmlHttp=new ActiveXObject("Microsoft.XMLHTTP"); }
	  		catch (e) {
	      	alert("Your browser does not support AJAX!");
	      	return false;
			}
		}
	}
	xmlHttp.onreadystatechange=function() {
		if (xmlHttp.readyState==4) {
   		//document.myForm.time.value=xmlHttp.responseText;
			document.getElementById('tag'+jobID).innerHTML = xmlHttp.responseText;
		}
	}
	xmlHttp.open("GET","ajax_UnTagJob.php?id="+jobID,true);
	xmlHttp.send(null);
}

function ApplyJob(jobID) {
	var xmlHttp;
	try { xmlHttp=new XMLHttpRequest(); }		// Firefox, Opera 8.0+, Safari
	catch (e) {
		try { xmlHttp=new ActiveXObject("Msxml2.XMLHTTP"); }	// Internet Explorer
		catch (e) {
	  		try { xmlHttp=new ActiveXObject("Microsoft.XMLHTTP"); }
	  		catch (e) {
	      	alert("Your browser does not support AJAX!");
	      	return false;
			}
		}
	}
	xmlHttp.onreadystatechange=function() {
		if (xmlHttp.readyState==4) {
   		//document.myForm.time.value=xmlHttp.responseText;
			document.getElementById('apply'+jobID).innerHTML = xmlHttp.responseText;
		}
	}
	xmlHttp.open("GET","ajax_ApplyJob.php?id="+jobID,true);
	xmlHttp.send(null);
}
