<!-- 
function getQueryVariable(variable) {
  var defsite = location.href; 
  var query = window.location.search.substring(1);
  var vars = query.split("&");
  
  if (defsite == "http://www.lina-alert.com/"){
	return "www.jobstreet.com";
  }
  
  for (var i=0;i<vars.length;i++) {
    var pair = vars[i].split("=");
    if (pair[0] == variable) {
      return pair[1] + ".jobstreet.com";
    }
  } 
  
  var ck = getCookie("site"); 
  if (ck == 0) {
    return "www.jobstreet.com";
  }
  else {
	return ck + ".jobstreet.com";
  }
}

function getCookie(c_name)
{
if (document.cookie.length>0)
  {
  c_start=document.cookie.indexOf(c_name + "=")
  if (c_start!=-1)
    { 
    c_start=c_start + c_name.length+1 
    c_end=document.cookie.indexOf(";",c_start)
    if (c_end==-1) c_end=document.cookie.length
    return unescape(document.cookie.substring(c_start,c_end))
    } 
  }
	return 0
}

copy="Copyright &copy; ";
js=" <a class=grey href='http://" + getQueryVariable("site") + "'>JobStreet.com</a>";
today=new Date();
y0=today.getFullYear();
country=location.href; 

document.write("<style>.grey{FONT: 7.5pt verdana; COLOR: #666666; TEXT-DECORATION: none;}</style>");
document.write("<TABLE cellSpacing=0 cellPadding=0 width=100% align=center border=0><TR>");
document.write("<TD align=left><a class=grey href='");
document.write("http://www.lina-alert.com/terms_conditions.htm'>Terms & Conditions</a>");
document.write("</TD><TD align=right class=grey>"); 
document.write(copy);
document.write(y0);
document.write(js); 
document.write("</TD></TR></TABLE>");

 //-->

