﻿function bookmarkThis(){
    var title = document.title;
    
    if (document.all){
        window.external.AddFavorite(location.href,title) 
    } 
    else if (window.sidebar) { 
        window.sidebar.addPanel(title, location.href, "") 
    } 
    else { 
        alert("Sorry! Your browser doesn't support this function.") 
    }
}

function renderSendThis() {
    var currentPage, output, imageURL;
    var mailSubject, mailBody;
    
    imageURL = "http://www.prostatecancer.ca/CMSTemplates/PCC/images/icon_send.gif";
    currentPage = location.href;
    
    mailSubject = "I want you to check this site out";
    mailBody = "Hey, I just found this site.  I think you will like it. " + currentPage;    
    
    output = "<a href='mailto:?Subject=" + mailSubject + "&Body=" + mailBody + "'>";
    output = output + "<img src='" + imageURL + "' border='0'/>" + "</a>";
    document.write(output);
}


function getFrontSize() {
    alert(document.body.style.fontSize);
}

function resizeFont(multiplier) {
  if (document.body.style.fontSize == "") {
    document.body.style.fontSize = "11px";
  }
  document.body.style.fontSize = parseFloat(document.body.style.fontSize) + (multiplier * 1) + "px";
}

function resetFontSize(multiplier) {
  document.body.style.fontSize = "11px";
}