window.onload = function() {
	if (!document.getElementById || !document.createTextNode || !document.createElement ) { return; }

    var para = document.createElement("p");

//Create the link
    pAnchor = document.createElement("a");
    pAnchor.setAttribute("id", "printlink");
    pAnchor.setAttribute("href","#");
    pAnchor.appendChild(document.createTextNode("Print this page"));
           
 	para.appendChild(pAnchor);

document.getElementById("sf-footer").appendChild(para);

//Print
document.getElementById("printlink").onclick = function() {
	window.print();
    return false;
}
}

