function MakeDate() {
DateText = "";
Now = new Date();
NowDay = Now.getDay();
Year = Now.getFullYear();
NowDate = Now.getDate();

DateText = DateText + NowDate;

NowMonth = Now.getMonth();
if (NowMonth == 0) { DateText = DateText + "/01"; }
if (NowMonth == 1) { DateText = DateText + "/02"; }
if (NowMonth == 2) { DateText = DateText + "/03"; }
if (NowMonth == 3) { DateText = DateText + "/04"; }
if (NowMonth == 4) { DateText = DateText + "/05"; }
if (NowMonth == 5) { DateText = DateText + "/06"; }
if (NowMonth == 6) { DateText = DateText + "/07"; }
if (NowMonth == 7) { DateText = DateText + "/08"; }
if (NowMonth == 8) { DateText = DateText + "/09"; }
if (NowMonth == 9) { DateText = DateText + "/10"; }
if (NowMonth == 10) { DateText = DateText + "/11"; }
if (NowMonth == 11) { DateText = DateText + "/12"; }
DateText = DateText + "/" + Year
return (DateText);
}


function openWindow(url,width,height) {
  var params="menubar=no,toolbar=yes,location=no,directories=no,status=no,scrollbars=yes,resizable=yes,dependent,width="+width+",height="+height;
  popupWin = window.open(url, 'remote',params);
}

function checkSearch()
{
 if (document.form.job.value=='')
 {
  alert('Please enter a job category in the search field');
  return(false);
 }
}

function gogetit(url)
{
 if (url != '')
 {
  self.location = url;
 }
}

