		//print button
		function printSMWindow()
		{
			var sPageUrl =document.URL;
			var secs = new Date();
			var w = 680;
			var h = 560;
			var name = 'popup'+secs.getTime();
			var options = 'toolbar=yes,location=no,status=no,scrollbars=yes,resizable=yes';
			
			//if it doenst end in index.html then stick it on the end
			if (sPageUrl.indexOf('/index.html') != -1)
			{
				//document.write("its got one!");
			}
			else if(sPageUrl.indexOf('.html') != -1)
			{
			}
			else if(sPageUrl.indexOf('.htm') != -1)
			{
			}
			else if(sPageUrl.indexOf('index.html') != -1)
			{
			}
			else
			{
		         if(sPageUrl.indexOf('#')== -1)
			{
			sPageUrl=sPageUrl +"index.html";
			}
			else
			{
			sPageUrl = sPageUrl.substring(0,sPageUrl.lastIndexOf('#'));
			sPageUrl=sPageUrl +"index.html";
			}
			}
			window.open("http://www.terminalfour.com/olh/olh_printerfriendly.jsp?Url="+sPageUrl+'&tilte=,left='+(screen.width.valueOf()-(w+100))+',top=100,width='+w+',height='+h+','+options)
			closeWin();
		}


  document.write("<a href=\"javascript:printSMWindow();\"'><img src=\"/images/icon-print.gif\" alt=\"Printer Icon\" width=\"37\" height=\"19\" border=\"0\"></a>");
  document.write("<span class=\"leftsidebasetext\"><a href=\"javascript:printSMWindow();\" >Print</a></span>");
