    var now=new Date();
    var months = new Array(
      'jan','feb','mar','april','may',
      'june','july','aug','sept','oct',
      'nov','dec');
    var date = ((now.getDate()<10) ? "0" : "")+ now.getDate();
    var imageName=months[now.getMonth()];

	locations = "www.network.co.uk www.netrec.co.uk";
    var locStr = window.location + "";
	var start = locStr.indexOf("://")+3;
	var end = locStr.indexOf("/",start);
	if (end == -1)
	  domain = locStr.substring(start);
	else
		domain = locStr.substring(start,end);
//	alert("Domain is "+domain);
//	window.status="Domain is "+domain;
	if (locations.indexOf(domain) == -1 ) {
//		alert("not in list");
//		window.status=domain+' is not in list';
		
		document.write('<table width="775" border="0" cellspacing="0" cellpadding="0">');
			document.write('<tr>');
				document.write('<td><img src="/resource/banners/ban_' + imageName + '.jpg" width="773" height="73"><br><img src="/resource/blank.gif" width="10" height="1"></td>');
			document.write('</tr>');
			document.write('<tr>');
				document.write('<td>');
					document.write('<img src="/resource/menu/mnu_jobsearch.gif" width="127" height="21" name="menu0" id="menu0" onmouseover="showMenu(event)" onmouseout="hideMenu(event)"><img src="/pertemps/resource/blank.gif" width="1" height="1">');
					document.write('<img src="/resource/menu/mnu_cand.gif" width="134" height="21" name="menu1" id="menu1" onmouseover="showMenu(event)" onmouseout="hideMenu(event)"><img src="/pertemps/resource/blank.gif" width="1" height="1">');
					document.write('<img src="/resource/menu/mnu_client.gif" width="127" height="21" name="menu2" id="menu2" onmouseover="showMenu(event)" onmouseout="hideMenu(event)"><img src="/pertemps/resource/blank.gif" width="1" height="1">');
					document.write('<img src="/resource/menu/mnu_about.gif" width="127" height="21" name="menu3" id="menu3" onMouseOver="showMenu(event)" onMouseOut="hideMenu(event)"><img src="/pertemps/resource/blank.gif" width="1" height="1">');
					document.write('<img src="/resource/menu/mnu_contact.gif" width="127" height="21" name="menu4" id="menu4" onmouseover="showMenu(event)" onmouseout="hideMenu(event)"><img src="/pertemps/resource/blank.gif" width="1" height="1">');
					document.write('<img src="/resource/menu/mnu_home.gif" width="128" height="21" name="menu5" id="menu5" onmouseover="showMenu(event)" onmouseout="hideMenu(event)">');
				document.write('</td>');
			document.write('</tr>');
		document.write('</table>');
			
    } else {
//    alert("in list");
//	window.status=domain+' in list';
	}
