<!--
// DEFAULT

//Style sheet
var StyleStr = "";

{
	StyleStr =	"<STYLE type='text/css'>" +
      ".frame00	{ background: #f0f0f0; 	border:	1px solid #afafaf; }" +
      ".frame0	{ background: #00a1cb; border: 1px solid #00a1cb; }" +
      ".frame1	{ background: #FFFFFF; border-top:	1px solid #00a1cb; border-left: 1px solid #00a1cb; border-right: 1px solid #00a1cb; border-bottom: 1px solid #00a1cb; }" +
      ".frame2 	{ background:	#FFFFFF; border-top: 1px solid #afafaf; border-left: 1px solid #afafaf; border-right: 1px solid #afafaf; border-bottom: 1px solid #afafaf; }" +
	"</STYLE>";
}

{
	document.write(StyleStr);
}


// Terug naar vorige document
function goHist(a)
{
   history.go(a);      // Ga naar vorig document.
} 


//Last modified
function lastModified() {
   var modiDate=new Date(document.lastModified)
   var showAs=modiDate.getDate()+"/" + (modiDate.getMonth()+1)
   showAs+="/"+modiDate.getYear() 
   return showAs }


// Stay on top
function stayOnTop() {
window.focus();
setTimeout("stayOnTop()", 500);
}


// MaxWin
function MaxWin(url11) {
var remote11Win = 
window.open(url11,'remote11','directories=no,location=no,status=no,toolbar=yes,menubar=yes,scrollbars=yes,resizable=yes,copyhistory=no,height=460,width=690,top=0,left=0');
}


// Nieuw venster voor nota benes
function Nota(url0) {
var remote0Win = 
window.open(url0,'remote0','directories=no,location=no,status=no,menubar=no,toolbar=no,scrollbars=yes,resizable=yes,copyhistory=no,height=225,width=375,top=0,left=0');
}


// Nieuw venster voor Info-documenten
function Info(url1) {
var remote1Win = 
window.open(url1,'remote1','directories=no,location=no,status=no,menubar=no,toolbar=no,scrollbars=yes,resizable=yes,copyhistory=no,height=300,width=500,top=0,left=0');
}


// Nieuw venster voor HTML-documenten (menubar=yes toolbar=yes)
function New(url2) {
var remote2Win =
window.open(url2,'remote2','directories=no,location=no,status=no,menubar=yes,toolbar=yes,scrollbars=yes,resizable=yes,copyhistory=no,height=440,width=620,top=0,left=0');
}


// NewWindow
function NewWindow(url3) {
var remote3Win =
window.open(url3,'remote3','directories=no,location=no,status=no,menubar=yes,toolbar=yes,scrollbars=yes,resizable=yes,copyhistory=no,height=440,width=620,top=0,left=0');
}


// NewWin
function NewWin(url4) {
var remote4Win = 
window.open(url4,'remote4','directories=no,location=no,status=no,toolbar=no,menubar=yes,scrollbars=yes,resizable=yes,copyhistory=no,height=440,width=620,top=0,left=0');
}


// ResourceWindow
function ResourceWindow(url5) {
var remote5Win = 
window.open(url5,'remote5','directories=no,location=yes,status=yes,menubar=yes,toolbar=yes,scrollbars=yes,resizable=yes,copyhistory=yes,height=540,width=780,top=0,left=0');
}

// Nieuw venster voor Pdf-documenten
function Pdf(url6) {
var remote6Win = 
window.open(url6,'remote6','directories=no,location=no,status=no,menubar=no,toolbar=no,scrollbars=yes,resizable=yes,copyhistory=no,height=540,width=760,top=0,left=0');
}

// Nieuw 2e venster voor acrobat reader
function Acro(url7) {
var remote7Win = 
window.open(url7,'remote7','directories=no,location=no,status=no,menubar=no,toolbar=no,scrollbars=yes,resizable=yes,copyhistory=no,height=540,width=760,top=30,left=30');
}

// Nieuw 2e venster voor extra toelichting (toolbar=yes menubar=yes)
function PopWin(url8) {
var remote8Win = 
window.open(url8,'remote8','directories=no,location=no,status=no,menubar=yes,toolbar=yes,scrollbars=yes,resizable=yes,copyhistory=no,height=440,width=620,top=30,left=30');
}


// Nieuw 2e venster voor toelichting op bijvoorbeeld wetsartikel (menubar=yes)
function Toelichting(url9) {
var remote9Win = 
window.open(url9,'remote9','directories=no,location=no,status=no,menubar=yes,toolbar=no,scrollbars=yes,resizable=yes,copyhistory=no,height=400,width=620,top=60,left=60');
}


// Nieuw venster voor berekeningen
function Form(url10) {
var remote10Win =
window.open(url10,'remote10','directories=no,location=no,status=no,menubar=no,toolbar=yes,scrollbars=yes,resizable=yes,copyhistory=no,height=480,width=620,top=30,left=30');
}


// Opheffen vensterfouten
function stopError() {
return true;
}
window.onerror=stopError;

// foto in een nieuw venster
function selectWin(source,h1,w1){
 newWin = window.open(source,'','height=' + h1 + ',width=' + w1 + ',top=0,left=0');
}


// Window opener
function WinOpen(URL)
{
controlWindow=window.open(URL , "Control","toolbar=yes,location=no,directories=no,status=yes,menubar=yes,scrollbars=yes,width=670,height=420,resizable=yes, top=30,left=30");
}


// -->
