// Site link path (with trailing slash), referenced multiple times within this file.
var link_path  = "/forum06/";

function PrintThisPage() 
{ 
   var sOption="toolbar=yes,location=no,directories=yes,menubar=yes,"; 
       sOption+="scrollbars=yes,width=750,height=600,left=100,top=25"; 

	var sContent = document.getElementById('printable').innerHTML;
   
   var winprint=window.open("","",sOption); 
       winprint.document.open(); 
	   winprint.document.write('<html><head><title>WingsForum 2006</title><link href="'+link_path+'common/wings.css" type="text/css" rel="stylesheet"><link rel=\"stylesheet\" type=\"text/css\" href=\"'+link_path+'common/print-send.css\"></head>');
	   winprint.document.write('<body><img src="'+link_path+'images/print_logo.gif" border="0" height="33" width="313" alt="WINGS">');
	   winprint.document.write(sContent);
	   winprint.document.write('<hr size="1"><div align="center"><small>c/o European Foundation Centre, 51 rue de la Concorde, Brussels B-1050 Belgium<br>Telephone: +32 (2) 512 8938   Fax: +32 (2) 512 3265   E-mail: <a href="mailto:wings@efc.be">wings@efc.be</a></small></div>');
	   winprint.document.write('</body></html>'); 
       winprint.document.close(); 
       winprint.focus(); 
}