var debugOn = false;
function printContent() {
  var layertext = document.getElementById("conthp");
  var windowContents = getPrintTemplate(layertext.innerHTML);
  if(debugOn) {
  	windowContents = "<textarea cols=\"80\" rows=\"50\">" + windowContents + "</textarea>";
  }
  var generator=window.open("",'_blank','');
  generator.document.write(windowContents);
  generator.document.close();
}
function getPrintTemplate(text) {
	var template="";
	template += "<html>";
	template += "<head>";
	template += "<title>LifeChoices Resource Center - Fairfax, VA | Sanctity of Life Ministries</title>";
	template += "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\">";
	template += "</head>";
	template += "<body bgcolor=\"#ad9952\">";
	template += "<div style=\"width:500px\"><a href=\"javascript:window.print();\"><img src=\"images/print_logo.gif\" hspace=\"15\" border=\"0\"></a><br clear=\"all\"><br>";
	template += "<div style=\"font-family: Tahoma, Verdana, Arial, Helvetica, sans-serif; font-size: 12px; font-style: normal; line-height: 16px; color: #3A4F64; width:500px; margin-left:15px; margin-top:15px; background-color:#d4c07a; padding:15px\">";
	template += text;
	template += "</div></div></body></html>";
	return template;

}