//var isIE = (navigator.appName.indexOf('Microsoft')   != -1);
// Split the string into part [0] and part [1]



/*--- begin ie6 controle */

// Split the string into part [0] and part [1]
temp=navigator.appVersion.split('MSIE');

// Parse the string for the "6" in 6.0
ieVer=parseInt(temp[1]);

// Is it greater than 6?
var isIE6=(ieVer <= 6)?1:0;

/*--- einde ie6 controle */






function myopen2(link,w,h){
	//if(isIE){
		w+=20;
		h+=20;
	//}
	mymut = window.open(link,'Afbeelding','width='+w+',height='+h+',menubar=no,toolbars=no,scrollbars=yes');
}

function fixH(){
	//alert('test');
	var lh=document.getElementById('lcol').offsetHeight;
	
	if(isIE6==1){
		//alert('ie6');
		var rh=document.getElementById('rcol').offsetHeight-10}
	else{
		//alert('niet ie6');
		var rh=document.getElementById('rcol').offsetHeight-20}	
	
	
	document.getElementById('rcol').style.height=(lh>rh)? lh+"px" : rh+"px";
	document.getElementById('lcol').style.height=(rh>lh)? rh+"px" : lh+"px";
	


	//alert(lh);
	//alert(rh);
	//alert(document.getElementById('lcol').style.height);
	//document.getElementById('details').style.height=document.getElementById('lcol').style.height;
	
}
