

function hideElements() {
  if (document.getElementById) {
    document.getElementById("top").style.visibility="hidden";
    document.getElementById("top").style.width="1px";
    document.getElementById("top").style.height="1px";
	document.getElementById("top").style.display="none";

    document.getElementById("searchengine").style.visibility="hidden";
    document.getElementById("searchengine").style.width="1px";
    document.getElementById("searchengine").style.height="1px";
    document.getElementById("searchengine").style.display="none";

    document.getElementById("sidebar").style.visibility="hidden";
    document.getElementById("sidebar").style.width="1px";
    document.getElementById("sidebar").style.height="1px";
    document.getElementById("sidebar").style.display="none";
	
    document.getElementById("printready").style.visibility="hidden";
    document.getElementById("printready").style.width="1px";
    document.getElementById("printready").style.height="1px";
    document.getElementById("printready").style.display="none";

    document.getElementById("footer").style.visibility="hidden";
    document.getElementById("footer").style.width="1px";
    document.getElementById("footer").style.height="1px";
    document.getElementById("footer").style.display="none";
  }
}

function printready_button() {
  var urladdr = self.location.toString();
  var string  = "";

  string = "background-color:#E6E7ED; padding:4px; border-top:1px solid #4169E1; border-bottom:1px solid #4169E1;";
  document.write("<div id='printready' align='right' style='"+string+"'>");

  document.write("<a class='toolbar' href='"+urladdr+"?printready=yes'>")
  document.write("<img src='/ca/norcal/images/toolbar/printready_icon.gif' alt='Print Ready' border='0' style='vertical-align:text-top;' />");
  document.write("Print Ready");
  document.write("</a>");

  document.write("<img src='/ca/norcal/images/spacer.gif' width='30' height='1'>");
  document.write("<a class='toolbar' href='javascript:history.go(-1)'>");
  document.write("<img src='/ca/norcal/images/toolbar/back_icon.gif' alt='Go Back 1 page' border='0' style='vertical-align:middle;' />");
  document.write("&nbsp;Back");
  document.write("</a>");

  document.write("<img src='/ca/norcal/images/spacer.gif' width='30' height='1'>");
  document.write("<a class='toolbar' href='/ca/norcal/sitemap/sitemap.html'>");
  document.write("<img src='/ca/norcal/images/toolbar/sitemap_icon.gif' alt='Site Map' border='0' style='vertical-align:middle;' />");
  document.write("Site Map");
  document.write("</a>");


  document.write("</div>");
}

function header_nofrills() {
  var urladdr = self.location.toString();
  
  var norcal_indexStart = urladdr.indexOf('/ca/norcal/');
  var primaryUrl = urladdr.substring(0,norcal_indexStart)+"/ca/norcal/index.html";
  
  var qmark_indexStart = urladdr.indexOf('?'); // .../xxx.html?printready=yes
  var sourceUrl = urladdr.substring(0,qmark_indexStart);
  
  document.write("<center>")
  
  document.write("<a class='contenthref' href='"+sourceUrl+"'>")
  document.write(sourceUrl)
  document.write("</a><p></p>")
  
  document.write("<table valign='top' width='500' style='border: thin solid #696969' border='0'> ")
  document.write("<tr><td valign='top' class='contentbody' nowrap>")
  document.write("    <center>")
  document.write("    <b>American Red Cross &#183; Northern California Blood Services Region</b><br />")
  document.write("    6230 Claremont Ave. <b>&#183;</b> Oakland, CA 94618<br />")
  document.write("    Schedule Donor Appointment: 1-800-GIVELIFE</font> <b>&#183;</b> www.BeADonor.com</font><br />")
  document.write("    "+primaryUrl)
  document.write("    </center>")
  document.write("</td></tr>")
  
  document.write("<tr><td valign='top' class='contentbody' nowrap>")
  document.write("    <center>")
  document.write("    Alameda   &nbsp;<b>&#183;</b>&nbsp; ")
  document.write("    Contra Costa  &nbsp;<b>&#183;</b>&nbsp; ")
  document.write("    Monterey  &nbsp;<b>&#183;</b>&nbsp; ")
  document.write("    San Benito    &nbsp;<b>&#183;</b>&nbsp; ")
  document.write("    Santa Clara   &nbsp;<b>&#183;</b>&nbsp; ")
  document.write("    Santa Cruz")
  document.write("    </center>")
  document.write("</td></tr>")
  document.write("</table>")
}

function footer_nofrills() {
  document.write("</center>")
}