function ShowQuestionEmailAddress() {
    document.write('<A HREF="mailto:questions@bearonlinestore.com">questions@bearonlinestore.com</A>');
}
function ShowSalesEmailAddress() {
    document.write('<A HREF="mailto:sales@bearonlinestore.com">sales@bearonlinestore.com</A>');
}
function ChangeImage(img_name, img_src, title) {
   document[img_name].src = img_src;
   document[img_name].title = title;
}
function ReverseContentDisplay(d) {
   if(d.length < 1) { return; }
   if(document.getElementById(d).style.display == "none") { document.getElementById(d).style.display = "block"; }
   else { document.getElementById(d).style.display = "none"; }
}
function HideContent(d) {
    document.getElementById(d).style.display = "none";
}
function ShowContent(d) {
    document.getElementById(d).style.display = "block";
}
