function openWindow(URL, name, newWidth, newHeight) {
	win=open(URL,name,'status=no,resizable=no,menubar=no,toolbar=no,resize=no,scrollbars=no,height=' + newHeight + ',width=' + newWidth);
	win.self.focus();	
}

function openWindow2(URL, name, newWidth, newHeight) {
	win=open(URL,name,'status=no,resizable=no,menubar=no,toolbar=no,resize=no,scrollbars=yes,height=' + newHeight + ',width=' + newWidth);
	win.self.focus();	
}

function segeln(URL, name, newWidth, newHeight) {
	win=open(URL,name,'status=no,resizable=no,menubar=no,toolbar=no,resize=no,scrollbars=no,height=' + newHeight + ',width=' + newWidth);
	win.self.focus();	
}

function segeln2(URL, name, newWidth, newHeight) {
	win=open(URL,name,'status=no,resizable=no,menubar=no,toolbar=no,resize=no,scrollbars=yes,height=' + newHeight + ',width=' + newWidth);
	win.self.focus();	
}
