/* 
 * general_script.js toegevoegd 18-07-2011
*/

function popupWindowThuiswinkelAwards(url) {
  window.open(url,'popupWindow','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,width=1000,height=1000,screenX=800,screenY=800,top=150,left=150')
}

function popupWindow(url) {
  window.open(url,'popupWindow','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,width=800,height=600,screenX=800,screenY=600,top=150,left=150')
}

function popupWindowServiceDelivery(url) {
  window.open(url,'popupWindow','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,width=400,height=400,screenX=800,screenY=800,top=150,left=150')
}

function init() {
	if(document.getElementById('comboboxlinkslist')) {
	document.getElementById('comboboxlinkslist').style.display = 'none';
	}
}

window.onload = init;

function toggleCombobox(sElementId) {
	oElement = document.getElementById(sElementId);
	if (oElement.style.display == 'none' || oElement.style.display == null) {
	oElement.style.display = 'block';
	} else {
	oElement.style.display = 'none';
	}
}

