// JavaScript Document
// Standard functions to be called after page load
<!--

var maxWidth  = 130;
var maxHeight = 130;
var windowHandle = null

function PrintContent(){
//	windowHandle = window.open('about:blank','printer','width=620,height=400');
	windowHandle = window.open('','printer','width=620,height=400');
	var tmp = windowHandle.document;
	tmp.write('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">\n');
	tmp.write('<html xmlns="http://www.w3.org/1999/xhtml">\n');
	tmp.write('<head>\n');
	tmp.write('<title>FZ</title>\n');
	tmp.write('<link href="/css/print.css" rel="stylesheet" type="text/css" />\n');
	tmp.write('</head>\n');
	tmp.write('<body>\n');
    //Write Header to popup
	tmp.write('<img src="/images/logo_fz_print.gif" /><br />\n');
	//Write Content to popup
    tmp.write('<div id="content">' + document.getElementById('print').innerHTML) + "</div>\n";
	//Write Copyrights to poppup
    tmp.write('<p><b>Copyright 2008 Copyright Reed Business</b></p>\n');	
 	tmp.write('</body>\n');   
 	tmp.write('</html>\n');   
 	tmp.close();  	
    windowHandle.print();
    windowHandle.close();	
}

function updateWindow() {


  //  setTimeout('windowHandle.close();',500);
}


function scaleImage(im) {

  if (typeof im.naturalHeight == 'undefined') im.naturalHeight = im.height;
  if (typeof im.naturalWidth == 'undefined') im.naturalWidth = im.width;
  
  if (im.naturalWidth> maxWidth) {

    im.width = maxWidth;
///	 im.height = maxHeight;
    im.style.maxWidth = im.naturalWidth + 'px';
///	 im.style.maxHeight = im.naturalHeight + 'px';
    im.className = 'resized';
   // im.title = 'Klik voor originele grootte';
   // im.onclick = unscaleImage;

  }

}

function unscaleImage() {

  if (this.height == maxHeight) {
	if (this.naturalHeight < 468){
		this.height = this.naturalHeight;
		this.style.borderWidth = '0px';
		this.title = 'Klik om te verkleinen';
	}
	else{
		newWindow=window.open(this.src,'newWin','width='+this.naturalWidth+',height='+this.naturalHeight+',toolbar=no');
		newWindow.document.write('<html><head><title>'+this.alt+'(Large Image)<\/title><style>body{margin:0;}<\/style><\/head><body><img src="'+this.src+'" alt="'+this.alt+'"><\/body><\/html>');
		newWindow.focus();		
	}

  } else {
	
    this.height = maxHeight;
    this.style.borderWidth = '2px';
    this.title = 'Klik voor de orginele grootte';

  }
}

function mp(url){
	window.location.href= '#';
	window.location.href= url;
}

function outLinks(myURL){
	linkTarget="_blank";
	for (var i=0; i<=(document.links.length-1); i++){
		isExternal=((document.links[i].href.indexOf("http://")!=-1)&&(document.links[i].href.indexOf(myURL)==-1))
		if(isExternal){	
			document.links[i].target = linkTarget;
		}
		else{
			if (document.links[i].href.indexOf("#") == 0 ){
				document.links[i].target = "_top";	
			}				
		}
	}
}


function domResize() {
	if (navigator.userAgent.match(/Opera (\S+)/)) {
		var operaVersion = parseInt(navigator.userAgent.match(/Opera (\S+)/)[1]);
	}
	if (!document.getElementById||operaVersion <7) return;
	var imgarr=document.getElementsByTagName('img');	
	for (i=0;i<imgarr.length;i++){
				
		if (imgarr[i].className.indexOf('domresize')!=-1){
			imgarr[i].onload=function(){
				scaleImage(this);
			}
			scaleImage(imgarr[i]);
		}
	}
}

function addToFavorites() { 
	if (window.external) { 
		window.external.AddFavorite(location.href,document.title) 
	} 
	else { 
		alert("Deze functie wordt niet ondersteunt door uw internet browser.");
	}
}


//domResize();

//outLinks(document.domain);

jQuery(document).ready(function() {
  var default_values = {};
  jQuery('#s, #sKeywords').each(function(i) {
    var index = jQuery(this).attr('name');
    var value = jQuery(this).val();
    default_values[index] = value;
  });

  jQuery('#s, #sKeywords').focus(function() {
	if(jQuery(this).val() === default_values[jQuery(this).attr('name')]) {
	  jQuery(this).val('');
	};
  })
});

// -->
