﻿function nl(grp,url,type,name) { 
  this.grp=grp;
  this.url=url;
  this.type=type;
  this.name=name;
}
var l;
l=new Array();var a; a=0;
l[a++]=new nl(1,'http://www.hr-guide.com/',2,'Home')
l[a++]=new nl(1,'aboutus.htm',1,'About Us')
l[a++]=new nl(1,'contact.htm',1,'Contact')
l[a++]=new nl(2,'',1,'Homepage')
l[a++]=new nl(2,'rates.htm',1,'Rate Card')
l[a++]=new nl(2,'faq.htm',1,'FAQs')
l[a++]=new nl(2,'10tips.htm',1,'10 Tips')
l[a++]=new nl(2,'specs.htm',1,'Image Specs')
l[a++]=new nl(2,'samples.htm',1,'Sample Ads')
l[a++]=new nl(2,'sampler.htm',1,'Sample Report')
l[a++]=new nl(2,'terms.htm',1,'Terms')
l[a++]=new nl(2,'mybanner.htm',1,'Request<BR>&nbsp;&nbsp;Form')

function gh(caption,j) {
  document.writeln('<table border=0 width="100%" bgcolor="#000000"><tr><td>')  
  document.writeln('<font size="2" color="#FFFFFF">')  
  document.writeln(caption+'<br>')  
  document.writeln('</td></tr></table>')
  document.writeln('<table border=0 width="100%" cellpadding=0 cellspacing=0>')
  for(i=0;i<l.length;i++){
    if(j==l[i].grp){ 
      root='http://www.hr-guide.com/'
      if(l[i].type==1){ root+='mediakit/' }
      if(l[i].type==2){ root='' }
      document.writeln('<tr><td ')
      document.writeln(' bgcolor=\'#CCDDFF\' onmouseover="mOvr(this,\'#DDFFCC\');" onmouseout="mOut(this,\'#CCDDFF\');" nowrap ') // Eliminated nowrap parameter
      document.writeln('>•<a href="'+root+l[i].url+'" target="_top">'+l[i].name+'</a><br>')
    }
  } document.writeln('</td></tr></table>')
  document.writeln('<br>')}
function mOvr(src,clrOver) { 
  if (!src.contains(event.fromElement)) { src.bgColor = clrOver; }
}
function mOut(src,clrIn) { 
  if (!src.contains(event.toElement)) { src.bgColor = clrIn; }
} 
function mClk(href) {
  if(event.srcElement.tagName=='TD') location = href;
}

function tc() {  
  document.writeln('<table border=0 width="100%" cellpadding="6" bgcolor="#CECECE"><tr><td>')  
  document.writeln('<font size="2" face="Arial">')  
  document.writeln('<a href="http://www.hr-guide.com/">')  
  document.writeln('<p align=center>HR-Guide Home</a></p>')  
  document.writeln('<font size="2" face="Arial">')  
  gh('HR-Guide',1)
  gh('Advertising',2)  
  document.writeln('</td></tr></table>')
} 
