﻿//javascript
jQuery(document).ready(function() {

    //take out the href just to be safe
    jQuery("#printpagelink a").attr("href", "javascript:void(0);");

    //bind a new click handler
    jQuery("#printpagelink a").bind("click", function(event) {
        event.preventDefault();
        printerFriendly();
        return false;
    });

    function printerFriendly() {
        //get current content
        var content = jQuery("#tabContainer div.tabContent:visible").html();

        //initialize new popup window
        var pop = window.open("");

        //set document contents
        var html = '<html><head><meta name="ROBOTS" content="NOINDEX,NOFOLLOW" /><script type="text/javascript" src="http://www.umc.org/atf/cf/%7Bdb6a45e4-c446-4248-82c8-e131b6424741%7D/JQUERY-1.3.1.MIN.JS"></script>';
        html += '<STYLE type="text/css">body {font: normal Arial, Helvetica, sans-serif;color: #000000;} #container { } p {font: 0.8em Arial, Helvetica, sans-serif;text-align: justify;color: #000000;} .NLtitle {font-size: 1.2em;color: B0513E;} h3 {font-size: 0.8em;color: #000000;font-weight:bold;} .title_greenbg {margin-top:10px;font-size:1.2em;color: #000000;font-weight:bold;} .horiz {background-color:#CCCCCC;color:#CCCCCC;height:1px;left:0;margin-left:0;width:355px;} .headerRule {	background-color:#CCCCCC;color:#CCCCCC;height:1px;	margin-left:20px;	margin-right:20px;} a {	text-decoration: none;	color: #5B7AB4;	} a:hover {	text-decoration: underline;	} .header {	margin-left:10px;margin-right:10px;	height: 70px;} div#left { float: left;	} div#right {float: right;margin-right:15px;margin-top: 50px;} div#headerContents {float: left;margin-top: 30px;} .umcTitle {	font-size: 18px;	font-weight: bold;} .subHeader {	font-size: 12px;} </STYLE>';
        html += '<script type="text/javascript">$(document).ready(function() {	$("a#imageToggle").click(function () {        $("#container img").toggle();    });});</script>';
        html += '</head><body><div class="header"><div id="left"><img src="http://www.umc.org/atf/cf/%7Bdb6a45e4-c446-4248-82c8-e131b6424741%7D/CROSSFLAME.JPG" width="48" height="70"></div><div id="headerContents"><span class="umcTitle">UMCOM.org</span><br /><span class="subHeader">Inform. Inspire. Engage.</span></div><div id="right"><a id="imageToggle" href="javascript:void(0);">Show/Hide Images</a> | <A HREF="javascript:window.print()">Print</A> | <A HREF="javascript:window.close()">Close window</A></div></div><hr class="headerRule"><div style="clear:both;"></div><div id="container">';
        html += content;
        html += '</div><br /><hr class="headerRule"><div class="header"><div style="float:left;"><img src="http://www.umc.org/atf/cf/%7Bdb6a45e4-c446-4248-82c8-e131b6424741%7D/PRINTFOOTER.JPG" style="margin-left:10px;"></div><div style="float:right; text-align:right; margin-right:13px; margin-top:5px;"><A HREF="javascript:window.print()">Print now</A><div style="margin-top: 5px;" />Copyright &copy; 2006-2012 United Methodist Communications</div></div></div></body></html>';

        //write the document
        pop.document.open();
        pop.document.write(html);
        pop.document.close();
    }

});