// JavaScript Document

function printwindow() {
OpenWin = this.open("http://www.orlandocouponsfree.com/attraction_coupons/airboat.html" , "printWindow", "toolbar=yes,menubar=no,location=no,scrollbars=yes,resizable=yes,width=850,height=580,left=175,top=40");
}



function CallPrint(strid)
{
var prtContent = document.getElementById(strid);
var WinPrint =
window.open('','','left=0,top=0,width=1,height=1,toolbar=0,scrollbars=0,status=0');


WinPrint.document.write(prtContent.innerHTML);

WinPrint.document.close();
WinPrint.focus();
WinPrint.print();
WinPrint.close();
prtContent.innerHTML=strOldOne;
}

function PrintDocument()
	      {
      	      var elem = document.getElementById("PrintShellToolbar");
            	if (elem)
            	{
                		elem.style.display = "none";
		            window.setTimeout("window.print();",1)
      	          	window.setTimeout("document.getElementById('PrintShellToolbar').style.display = 'block';",1)
            	}
        	}