function nieuwvenster(URL,Title,TopEdge,LeftEdge,Tall,Wide) { 
newWinFeatures = "toolbar=no,location=no,directories=no,status=no" 
newWinFeatures += ",menubar=no,scrollbars=yes,resizable=yes" 
newWinFeatures += ",width=" + Wide 
newWinFeatures += ",height=" + Tall 
newWinFeatures += ",screenX=" + LeftEdge 
newWinFeatures += ",screenY=" + TopEdge 
newWinFeatures += ",top=" + TopEdge 
newWinFeatures += ",left=" + LeftEdge 
myNewWin=window.open(URL,Title,newWinFeatures) }
