function NieuwVenster(URL)
{
window.open(URL, "nieuw", "width=520,height=380,resizable=yes,menubar=no,scrollbars=yes,status=yes,toolbar=no,location=no,directories=no");
}

function NieuwVenster2(URL)
{
window.open(URL, "nieuw", "width=600,height=100,resizable=yes,menubar=no,scrollbars=yes,status=yes,toolbar=no,location=no,directories=no");
}


function replaceChars2(entry) {
out = "triple p"; // replace this
add = "triple"; // with this
temp = "" + entry; // temporary holder

while (temp.indexOf(out)>-1) {
pos= temp.indexOf(out);
temp = "" + (temp.substring(0, pos) + add + 
temp.substring((pos + out.length), temp.length));
}
document.zoekfrm.fldTerms.value = temp;
}
