
<!--


function openWin(URL) {
aWindow=window.open(URL,"test","toolbar=no,width=655,height=395,status=no,scrollbars=yes,resize=no,menubar=no");
}

function openWin2(URL) {
aWindow=window.open(URL,"test","toolbar=yes,width=880,height=1000,status=no,scrollbars=yes,resize=no,menubar=yes");
}


function openWin3(URL) {
aWindow=window.open(URL,"test","toolbar=no,width=445,height=185,status=no,scrollbars=no,resize=no,menubar=no");
}





<!-- hide from JavaScript-challenged browsers

function openWindow(url, width, height) {
  popupWin = window.open(url, 'Dialog_box', 'width='+width+',height='+height+',resizable,scrollbars,menubar')
}

function openWindow2(url, width, height) {
  popupWin2 = window.open(url, 'Dialog_box2', 'width='+width+',height='+height+',resizable,scrollbars,menubar')
}

function openWindow3(url, width, height) {
  popupWin3 = window.open(url, 'Dialog_box3', 'width='+width+',height='+height+',resizable,scrollbars,menubar')
}




//
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>\n';
var PrintKlaarElem = document.getElementById("PrintKlaar");
if (PrintKlaarElem != null){
html += PrintKlaarElem.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();}}

//



// hier de snelheid van de slideshow  (in milliseconden)
var SlideShowSpeed = 2500;

// duur van de crossfade (in seconden)
var CrossFadeDuration = 38;

var Picture = new Array(); // 
var Caption = new Array(); // 

// hieonder kun je meer images tovoegen
// ze moeten echter gelijk zijn aan het aantal captions daaronder

Picture[1]  = 'graphics/Man.jpg';
Picture[2]  = 'graphics/Man4.jpg';
Picture[3]  = 'graphics/Man3.jpg';
Picture[4]  = 'graphics/Man2.jpg';

// teksten bij de plaatjes ( aantal moet gelijk zijn aan aantal plaatjes hierboven )

Caption[1]  = "";
Caption[2]  = "";
Caption[3]  = "";
Caption[4]  = "";

// =====================================
// verander hieronder niets meer

var tss;
var iss;
var jss = 1;
var pss = Picture.length-1;

var preLoad = new Array();
for (iss = 1; iss < pss+1; iss++){
preLoad[iss] = new Image();
preLoad[iss].src = Picture[iss];}

function runSlideShow(){
if (document.all){
document.images.PictureBox.style.filter="blendTrans(duration=2)";
document.images.PictureBox.style.filter="blendTrans(duration=CrossFadeDuration)";
document.images.PictureBox.filters.blendTrans.Apply();}
document.images.PictureBox.src = preLoad[jss].src;
if (document.getElementById) document.getElementById("CaptionBox").innerHTML= Caption[jss];
if (document.all) document.images.PictureBox.filters.blendTrans.Play();
jss = jss + 1;
if (jss > (pss)) jss=1;
tss = setTimeout('runSlideShow()', SlideShowSpeed);
}












 







