var brand;

if ( location.hostname.toLowerCase().indexOf('cocis.') >= 0 )
{
  brand = 'eCOCIS';
}
else {
  brand = 'EUREKA';
}

// 1/16/04 cocis image on public pages
function printBrand(prefix) {
 document.open();
 document.write("<img src='" + prefix + brand + ".gif' ");
 document.write('width="209" border="0" alt="' + brand + ' homepage">');
}

function printBrandSample(prefix) {
 document.open();
 document.write("<img src='" + prefix + brand + ".gif' ");
 document.write('width="203" border="0" alt="' + brand + ' homepage">');
}

//td background="join/images/logo_bott_eCOCIS.jpg"
function printBrandTag(prefix,suffix) {
 document.open();
 document.write(prefix);
 document.write(brand);
 document.write(suffix);
}


