function curDate() {
var date = new Date();
var d  = date.getDate();
var day = (d < 10) ? '0' + d : d;
var m = date.getMonth() + 1;
var month = (m < 10) ? '0' + m : m;
var yy = date.getYear();
var year = (yy < 1000) ? yy + 1900 : yy;
document.write(month + "/" + day + "/" + year);
}

function BiselFooter() {
document.writeln("<span class='BiselFooterGrey'>");
document.writeln("<span class='smallcaps'>George T. Bisel Co., Inc.</span> &bull; 710 S. Washington Square &bull; Philadelphia, PA 19106<br />To order call: 800-247-3526");
document.writeln("</span>");
}

function BiselFooter_Buy() {
document.writeln("<span class='BiselFooterGrey'>");
document.writeln("<span class='smallcaps'>George T. Bisel Co., Inc.</span> &bull; 710 S. Washington Square &bull; Philadelphia, PA 19106 &bull; <a href='http://www.bisel.com'>www.bisel.com</a><br />To order call: 800-247-3526 or click the 'Buy Now' button above.");
document.writeln("</span>");
}

function BiselHeader() {
document.writeln("<span class='BiselHeaderGrey'>");
document.writeln("<span class='smallcaps bold'>George T. Bisel Co., Inc.</span><br />Law Publishers");
document.writeln("</span>");
}

