function popup(url,width,height){
	settings=
	"toolbar=no,location=no,directories=no,"+
	"status=no,menubar=no,scrollbars=yes,"+
	"resizable=yes,width="+width+",height="+height;
	day = new Date();
	id = day.getTime();
	MyNewWindow=window.open(url,id,settings);
}
// <a href="index.htm" onclick="popup(this.href,'640','480');return false">homepage</a>

function clearText(thefield){
	if (thefield.defaultValue==thefield.value)
	thefield.value = ""
	thefield.select();
}
// <input type="text" name="query" id="inputsearch" value="zoek" size="18" onfocus="clearText(this)">
