function print_site()
{ 
var  disp_setting="toolbar=yes,location=no,directories=yes,menubar=yes,"; 
	   disp_setting+="scrollbars=yes,width=670, height=600, left=100, top=25"; 
var  content_vlue = document.getElementById("site").innerHTML; 
			  
var   docprint=window.open("","",disp_setting); 
		docprint.document.open(); 
		docprint.document.write('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de"><head><title>Joe Far Tours Reisen GmbH</title><link href="http://www.joefartours.com/css/layout.css" rel="stylesheet" media="all" type="text/css" /><link href="http://www.joefartours.com/css/print.css" rel="stylesheet" media="all" type="text/css" />'); 
		docprint.document.write('</head><body onLoad="self.print()" class="text"><div style="text-align: center"><strong>Joe Far Tours Reisen GmbH</strong></div><hr style="border: 1px solid black" /><div style="text-align: left; padding: 10px">');          
		docprint.document.write(content_vlue);          
		docprint.document.write('</div><br /><hr style="margin: 10 0 0 0px; border: 1px solid black" /><div style="text-align: center">copyright &copy; 2006 by Joe Far Tours Reisen GmbH<br /><br />');    
		docprint.document.write('<table class="text2"><tr><td style="width: 200px; text-align: left">Joe Far Tours Reisen GmbH<br />Otto-Bauer-Gasse 18<br />A-1060 Wien</td><td style="width: 200px; text-align: center">Telefon: +43 (0)1 504 13 86<br />E-Mail: contact@joefartours.com<br />Internet: www.joefartours.com</td><td style="width: 200px; text-align: right">Firmenbuch: FN 67039m<br />Handelsgericht Wien<br />UID-Nr.: ATU 15479300</td></tr></table></div>');    
		docprint.document.close(); 
		docprint.focus(); 
}