// JavaScript Document


<!--
var AutoPrint = true; // Indien 'false' wordt de pagina niet automatisch uitgeprint

function PrintPagina(){
if (document.getElementById != null){
var html = '<html>\n<head>\n ';
if (document.getElementsByTagName != null){
var headTags = document.getElementsByTagName("head");
if (headTags.length > 0)
html += headTags[0].innerHTML;}
html += '\n</he' + 'ad>\n<body style=" background-image: none;  width : 750px; font-size : 12px; line-height : 1.5; text-align : left; color : #000033;">\n';
var con1Elem = document.getElementById("con1");
if (con1Elem != null){
html += con1Elem.innerHTML;}
html += '\n</bo' + 'dy>\n</ht' + 'ml>';
var printWin = window.open("","PrintPagina");
printWin.document.open();
printWin.document.write(html);
printWin.document.close();
if (AutoPrint)printWin.print();}}
-->




