function writeJobAd(jobRef, jobRefPrint, jobTitle, jobCloseDate, jobIntDate){
	document.writeln("<tr>");
	if (jobRef=="none" || jobRef==null){
		document.writeln("<td align=\"center\" colspan=\"4\">We currently have no vacancies available.  Please come back soon.</td>");
	}
	else {
		document.writeln("  <td align=\"left\"><a href=\"ads/"+jobRef+".html\" onclick=\"openPopupAd(this.href, this.target); return false\">"+jobRefPrint+"</a></td>");
		document.writeln("  <td align=\"left\"><a href=\"ads/"+jobRef+".html\" onclick=\"openPopupAd(this.href, this.target); return false\">"+jobTitle+"</a></td>");
		document.writeln("  <td align=\"center\" valign=\"middle\"><a href=\"ads/"+jobRef+".html\" onclick=\"openPopupAd(this.href, this.target); return false\">"+jobCloseDate+"</a></td>");
		document.writeln("  <td align=\"center\" valign=\"middle\"><a href=\"ads/"+jobRef+".html\" onclick=\"openPopupAd(this.href, this.target); return false\">"+jobIntDate+"</a></td>");
	}
	document.writeln("</tr>");
}