<!--
//var serverAddr = 'http://localhost/';
var serverAddr = 'http://www.GiantPile.com/';
var docTitle = document.title;
var dateObj = new Date();
var disclaimTxt = "<div id='disclaimer'>Disclaimer: GiantPile (www.GiantPile.com) blog posts, comments, and other features found here are for informational purposes only and on <strong>as is</strong> basis. To the best of our abilities, GiantPile believes the information contained herein is accurate and true. However, this service is <strong>not</strong> a substitute for professional, academic, or legal advice. Please seek qualified help if so desired. By using this blog, you dissolve GiantPile of any consequences that may arise from such use. Please see <strong>Terms of Use</strong> for more information.</div>"
if (docTitle == "") {
	docTitle = "Printer Friendly Page";
}

var sCompanyInfo = "<strong>GiantPile.com</strong> <br /> Email: info@GiantPile.com &bull; Web: http://www.GiantPile.com";
var SCopyRight = "&copy; " + dateObj.getFullYear() + " GiantPile.com. All Rights Reserved."

function printMe(PrintSecID) {
	var content=" ";
	var browserName=navigator.appName; 
	content="<html><head>";
		content += "<title>" + docTitle + "</title>";
		content += "<link rel='stylesheet' type='text/css' href='" + serverAddr + "css/print.css'>";
	content += "</head><body>";
	content += "<table width='630' border='0' cellspacing='0' cellpadding='2'><tr><td>" + TopGraphics () + "</td></tr><tr><td>" + document.getElementById("printPageheading").innerHTML + document.getElementById("PrintPageContent").innerHTML;
	content += "<div id='clear10px'>&nbsp;</div><div id='footer'><div class='footer'>" + sCompanyInfo + "</div>" + disclaimTxt + SCopyRight + "</div>";
	content += "</td></tr></table>"
	content += "</body></html>";
	winWidth=screen.width-100; 
	winTop=screen.height-100; 
	winTop=0; 
	winLeft=15; 
	detailsWindow=window.open( " ", 'Print', 'dependent,toolbar=yes,scrollbars=yes,menubar=yes,,,width=660,left=' + winLeft + ',top=' + winTop + ''); 
	detailsWindow.document.write(content);
	detailsWindow.moveTo(winLeft,winTop);
	detailsWindow.focus();
	detailsWindow.document.close();
	if(browserName =="Microsoft Internet Explorer" ){
	detailsWindow.print();
		 }
}

function TopGraphics () {
	var logoHTML
	logoHTML = "<img src='" + serverAddr + "images/giant_pile_logo.jpg' width='60' height='60' alt='Giant Pile logo' title='Giant Pile logo' />"
	logoHTML = logoHTML + "<img src='" + serverAddr + "images/giant_pile.jpg' width='400' height='60' alt='Giant Pile: it is under the pile!' title='Giant Pile: it is under the pile!' />"
	return logoHTML;
}

