function pop(theURL, Name) { // V 1.0
var winleft = (screen.width - 621) / 2;
var winUp = (screen.height - 435) / 2;
var winProp = 'width=621,height=435,left='+winleft+',top='+winUp+',scrollbars=no,resizable=yes,menubar=no,toolbar=no'
//winProp = 'width='+popW+',height='+popH+',left='+winleft+',top='+winUp+',scrollbars='+scrollb+',resizable='+resizeb+',menubar='+menu+',toolbar='+tool+''
Win = window.open(theURL, Name, winProp)
}

function popb(theURL, Name) { // V 1.0
var winleft = (screen.width - 550) / 2;
var winUp = (screen.height - 375) / 2;
var winProp = 'width=550,height=375,left='+winleft+',top='+winUp+',scrollbars=yes,resizable=yes,menubar=no,toolbar=no'
//winProp = 'width='+popW+',height='+popH+',left='+winleft+',top='+winUp+',scrollbars='+scrollb+',resizable='+resizeb+',menubar='+menu+',toolbar='+tool+''
Win = window.open(theURL, Name, winProp)
}

QueryString.keys = new Array();
QueryString.values = new Array();

function QueryString(key){
	var value = null;
	for (var i=0;i<QueryString.keys.length;i++)
	{
		if (QueryString.keys[i]==key)
		{
			value = QueryString.values[i];
			break;
		}
	}
	return value;
}

function QueryString_Parse(){
	var query = window.location.search.substring(1);
	var pairs = query.split("?");
	
	for (var i=0;i<pairs.length;i++)
	{
		var pos = pairs[i].indexOf('=');
		if (pos >= 0)
		{
			var argname = pairs[i].substring(0,pos);
			var value = pairs[i].substring(pos+1);
			QueryString.keys[QueryString.keys.length] = argname;
			QueryString.values[QueryString.values.length] = value;		
		}
	}

}
QueryString_Parse();
var FTCD= QueryString("FTCD")

//var lnk= 'http://www.bestekschrijven.nl/cws/c5launch.dll/ipsnet.exe.0?dirn=Calduran?skel=Calduran?SYST=WONING?'
var lnk= 'http://www.bestekschrijven.nl/cws/c5launch.dll/ipsnet.exe.0?dirn=Calduran?skel=Calduran?'

function o(deze){
if (navigator.appName=="Netscape"){
deze.style.cursor='grab'}

else
deze.style.cursor='hand'
}

function h(url){
window.open=url
}

//var message='Function Disabled!';
//function clickIE() {if (document.all) {;return false;}}
//function clickNS(e) {if 
//(document.layers||(document.getElementById&&!document.all)) {
//if (e.which==2||e.which==3) {;return false;}}}
//if (document.layers) 
//{document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;}
//else{document.onmouseup=clickNS;document.oncontextmenu=clickIE;}
//document.oncontextmenu=new Function('return false')

//function disableselect(e){ 
//return false; 
//function reEnable(){ 
//}
//return true 
//}
//document.onselectstart=new Function ('return false'); 
//if (window.sidebar){ 
//document.onmousedown=disableselect; 
//document.onclick=reEnable 
//} 