// JavaScript Document

function print(){
	var pwin = window.open( "", "pwindow", "width=650,height=800,scrollbars=yes" );
	if( window.focus ){
		pwin.focus();
	}
	var img = document.getElementById("tm_image").src;
	var tmp = img.split( "/" );
	tmp = tmp[(tmp.length - 1)];
	var handle = pwin.document;
	handle.write( "<html>" );
    handle.write( "<head>" );
    handle.write( "<title>Print - TaxMaps</title>" );
    handle.write( "</head>" );
    handle.write( "<body align='center' onload='window.print()'>" );
    handle.write( "<div style='width: 8.5in; height: 11in; margin-bottom: 1in;'>" );
	handle.write( "<img src='taxmap/GetImage.php?i="+tmp+"' />" );
	handle.write( "</div>" );
	handle.write( "<div style='width: 8.5in; margin: 0px auto 0px auto; text-align: left;'><table cellspacing='0' cellpadding='0' border='0'>"+document.getElementById("tax_info").innerHTML+"</table></div>" );
    handle.write( "</body>" );
    handle.write( "</html>" );
    handle.close();
}

