function put_phpads_banner(zone_id_real, zone_id_test) {
   // basically, this code is from phpads code invocation
   phpads_svr = (location.host == "www.daijob.com" || location.host == "dce.daijob.com")? "hrclub.daijob.com" : "mirror.lan.daijob.com";
   zone_id = (location.host == "www.daijob.com")? zone_id_real : zone_id_test;

   if (!document.phpAds_used) document.phpAds_used = ',';
   phpAds_random = new String (Math.random()); phpAds_random = phpAds_random.substring(2,11);
        
   document.write ("<" + "script language='JavaScript' type='text/javascript' src='");
   document.write ("http://" + phpads_svr + "/phpAds/adjs.php?n=" + phpAds_random);
   document.write ("&amp;what=zone:" + zone_id);
   document.write ("&amp;exclude=" + document.phpAds_used);
   if (document.referrer)
      document.write ("&amp;referer=" + escape(document.referrer));
   document.write ("'><" + "/script>");
}

function put_banner_support1() {
    // these pages are ad pages. So banner should not be displayed
    if (location.href.match(/.*\/dj\/ja\/biz\/index\.shtml/) ||
        location.href.match(/.*\/dj\/ja\/biz2\/index\.shtml/) ||
        location.href.match(/.*\/dj\/ja\/biz3\/index\.shtml/) ||
        location.href.match(/.*\/dj\/ja\/biz3\/index2\.shtml/) ||
		location.href.match(/.*\/support\/casec/) ||
        location.href.match(/.*\/support\/ucla/) ) {
        return;
    }
    put_phpads_banner(9, 10);
}

