// -----------------------------------------------
// Licence notice:                                
//                                                
//  Copyright 2007, "Rijkswaterstaat"             
//                                                
//   This file is part of Matroos.                
//                                                
//    Matroos is free software; you can redistri- 
//    bute it and/or modify it under the terms of 
//    the GNU General Public License as           
//    published by the Free Software Foundation;  
//    either version 3 of the License, or         
//    (at your option) any later version.         
//                                                
//    Matroos is distributed in the hope that it  
//    will be useful, but WITHOUT ANY WARRANTY;   
//    without even the implied warranty of        
//    MERCHANTABILITY or FITNESS FOR A PARTICULAR 
//    PURPOSE.  See the GNU General Public        
//    License for more details.                   
//                                                
//    You should have received a copy of the GNU  
//    General Public License along with this      
//    program.                                    
//    If not, see <http://www.gnu.org/licenses/>. 
// -----------------------------------------------
function InVenster(strTitle, breed, hoog) {
	var WinProperties = 'menubar=0,toolbar=0,status=0,location=0';
	myWindow=window.open('','', WinProperties);
   	myWindow.document.location=strTitle;
	myWindow.resizeTo(breed, hoog);
	myWindow.document.close();
	myWindow.focus();
	return;
}
