// JavaScript Document
var windowHandle = null

function PrintContent(){
	
	windowHandle = window.open('about:blank','printer','width=620,height=400');
    setTimeout('updateWindow()',1);
	
}

function updateWindow() {
    windowHandle.document.open();
	windowHandle.document.write('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">');
	windowHandle.document.write('<html xmlns="http://www.w3.org/1999/xhtml">');
	windowHandle.document.write('<head>');
	windowHandle.document.write('<title>Nederlandse Orde van Advocaten</title>');
	windowHandle.document.write('<link href="/css/print.css" rel="stylesheet" type="text/css" />');
	windowHandle.document.write('</head>');
	windowHandle.document.write('<body onload="print();close()">');
    //Write Header to popup
	windowHandle.document.write('<img src="/image/logo_bw.gif" width="100" height="88" /><br />');
	//Write Content to popup
    windowHandle.document.write(document.getElementById('content').innerHTML);
	//Write Copyrights to poppup
    windowHandle.document.write('<p>Copyright 2005 Nederlandse Orde van Advocaten/Reed Business Information</p>');	
    windowHandle.document.close();
}
