var xmlHttp

function saveJob(href)
{

xmlHttp=GetXmlHttpObject();
if (xmlHttp==null)
  {
  alert ("Your browser does not support AJAX!");
  return;
}

var url=href;
url=url+"&sid="+Math.random();
xmlHttp.onreadystatechange=stateChangedJob;
xmlHttp.open("GET",url,true);
xmlHttp.send(null);

}

function stateChangedJob() {
    if (xmlHttp.readyState == 4) {
        document.getElementById("isJobSaved").innerHTML=xmlHttp.responseText;
        ShowContent('isJobSaved');
    }
}

function GetXmlHttpObject() {
    var xmlHttp=null;
try
  {
  // Firefox, Opera 8.0+, Safari
  xmlHttp=new XMLHttpRequest();
  }
catch (e)
  {
  // Internet Explorer
  try
    {
    xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
    }
  catch (e)
    {
    xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
    }
  }
return xmlHttp;
}


function HideContent(d) {
if(d.length < 1) { return; }
document.getElementById(d).style.display = "none";
}
function ShowContent(d) {
if(d.length < 1) { return; }
document.getElementById(d).style.display = "block";
}
function ReverseContentDisplay(d) {
if(d.length < 1) { return; }
if(document.getElementById(d).style.display == "none") { document.getElementById(d).style.display = "block"; }
else { document.getElementById(d).style.display = "none"; }
}
