// ***  MAXIMALISEER WINDOW - START ***

function maxWindow() {

window.moveTo(0,0);
if (document.all) {
top.window.resizeTo(screen.availWidth,screen.availHeight);
}
else if (document.layers||document.getElementById) {
if (top.window.outerHeight<screen.availHeight||top.window.outerWidth<screen.availWidth){
top.window.outerHeight = screen.availHeight;
top.window.outerWidth = screen.availWidth;
}}
}
// ***  MAXIMALISEER WINDOW - END ***

// **********************************************************************

// *** FADING SLIDE SHOW - HEAD - START *** 
// Original:  CodeLifter.com (support@codelifter.com) -->
// Web Site:  http://www.codelifter.com -->
// This script and many more are available free online at -->
// The JavaScript Source!! http://javascript.internet.com -->
function runSlideShow() {
if (document.all) {
document.images.SlideShow.style.filter="blendTrans(duration=2)";
document.images.SlideShow.style.filter="blendTrans(duration=crossFadeDuration)";
document.images.SlideShow.filters.blendTrans.Apply();
}
document.images.SlideShow.src = preLoad[j].src;
if (document.all) {
document.images.SlideShow.filters.blendTrans.Play();
}
j = j + 1;
if (j > (p - 1)) j = 0;
t = setTimeout('runSlideShow()', slideShowSpeed);
}
//  End -->
// *** FADING SLIDE SHOW - HEAD - END ***  -->

// **********************************************************************

// *** OPEN POP UP - start ***  -->
//Popup Window Script
//By JavaScript Kit (http://javascriptkit.com)
//JavaScript tutorials and over 400+ free scripts
function openpopup(popadres){
var popurl=popadres
<!-- var popopt='width='+screen.availWidth+',height='+screen.availHeight+',left=0,top=0,,,,,,,resizable,' -->
<!-- winpops=window.open(popurl,"",popopt) -->
winpops=window.open(popurl,"","width=800,height=600,left=0,top=0,,,,,,,resizable,")
}
// *** OPEN POP UP - end ***  -->

// **********************************************************************

