function writeFlash(s) {
    document.write(s);
}

var registeredVerderButtons=new Array();
function registerVerderButton(btnId) {
	registeredVerderButtons[registeredVerderButtons.length]=btnId;
}
function addToOnload(func) {
	if (typeof(func) != 'function') return;
	var oldonload=window.onload;
	window.onload=function() {
		if (oldonload) oldonload();
		func();
	}
}
function layoutVerderButtons() {
	var lowestButton = 0;
	var lowestPoint=0;
	var butArr=new Array();
	for(var i=0;i<registeredVerderButtons.length;i++) {
		butArr[i]=document.getElementById(registeredVerderButtons[i]);
		if (butArr[i]) {
			var tmp=DL_GetElementTop(butArr[i]);
			if (tmp > lowestPoint){
				lowestButton = i;
				lowestPoint=tmp;
			}
		}
}
	//Disabling this because it breaks layout in IE7/8
	//for(var i=0;i<registeredVerderButtons.length;i++) {
		//var btn=document.getElementById(registeredVerderButtons[i]);
	//	if (butArr[i]) {
	//		butArr[i].style.position='absolute';
	//		butArr[i].style.top = lowestPoint;
	//	}
	//}
}


function openBerekenConstructiesPopup(userEmail) {
	//var temp=window.open("top1.asp?email="+userEmail,"","width=800,height=400,top=0,left=0,scrollbars=yes,menubar=yes,resizable=yes");
	var temp=window.open("http://www.veenhoven.com/top1nl2.html","","width=800,height=400,top=0,left=0,scrollbars=yes,menubar=yes,resizable=yes");
	temp.focus();
}

function popupImage(imgSrc){
	
	popup=window.open("PopImage.aspx?imgUrl="+imgSrc,"","resizable=yes,width=100,height=100,toolbar=no,personaltoolbar=no,status=no");
	popup.focus();
}


function showDGVMoreInfo() {
	var w = 500;
	var h = 610;
	var x = (screen.width - w) / 2; 
	var y = (screen.height - h) / 2;
	var win = window.open("DGVMoreInfo.aspx","meer_info","resizable=1,width="+w+",height="+h+",top="+y+",left="+x+",alwaysRaised=0,dependent=1,titlebar=0,toolbar=0,status=0");
}


function showDisclaimer() {
	var w = 500;
	var h = 300;
	var x = (screen.width - w) / 2; 
	var y = (screen.height - h) / 2;
	var win = window.open("http://www.degrootvroomshoop.nl/disclaimer.aspx", "disclaimer", "width=" + w + ",height=" + h + ",top=" + y + ",left=" + x + ",alwaysRaised=1,dependent=1,titlebar=0,toolbar=0,status=0");
}

function openLiggerPopup(id){
	var w = 300;
	var h = 250;
	var x = (screen.width - w) / 2; 
	var y = (screen.height - h) / 2;
	var win = window.open("controls/site/LiggersPopup.aspx?id="+id,"disclaimer","width="+w+",height="+h+",top="+y+",left="+x+",alwaysRaised=1,dependent=1,titlebar=0,toolbar=0,status=0");
}


function doDetailDownload(strIds){
	var w = 300;
	var h = 250;
	var x = (screen.width - w) / 2; 
	var y = (screen.height - h) / 2;
	var win = window.open("GetDetails.aspx?type=download&ids="+strIds,"details","width="+w+",height="+h+",top="+y+",left="+x+",alwaysRaised=1,dependent=1,titlebar=0,toolbar=0,status=0");
}

function doDetailPrint(strIds){
	var w = 300;
	var h = 250;
	var x = (screen.width - w) / 2; 
	var y = (screen.height - h) / 2;
	var win = window.open("GetDetails.aspx?type=print&ids="+strIds,"details","width="+w+",height="+h+",top="+y+",left="+x+",alwaysRaised=1,dependent=1,titlebar=0,toolbar=0,status=0");
}