// JavaScript Document
// Standard functions to be called after page load
<!--

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>AT-Aandrijftechniek</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_at-aandrijftechniek.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 2007 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 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.");
	}
}


outLinks(document.domain);


// -->