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="/images/nova_admin_logo.gif" width="480" height="80" /><br />');
	//Write Title tot popup
    //windowHandle.document.write('<h1>' + document.getElementById('banner').innerHTML + '</h1>');	
	//Write Content to popup
    windowHandle.document.write(document.getElementById('content').innerHTML);
	//Write Copyrights to poppup
    windowHandle.document.write('<p>Copyright 2009 Nederlandse Orde van Advocaten / Reed Business.</p>');	
    windowHandle.document.close();
}