function OpenPopframe(theURL,theTitle,theWidth,theHeight) { //For using the popup
	if (theWidth == null ) theWidth = 630
	if (theHeight == null) theHeight = 580
	if (theTitle == null) theTitle = 'popup'

  window.open('pages/'+theURL+'',theTitle,'toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no,width='+theWidth+',height=' + theHeight);
}
//dus bv: javascript:OpenPopframe('Disclaimer.htm');

