function openWindow(url,width,height,args) {
	if (width=='' && height=='') { //Standardgröße
		width = 1000;
		height = 625;	
		if (screen.width<1024) {  // bei Auflösung von 800x600
			width = 780;
			height = 550;
		}		
	}
	// Demoseiten mit expliziter Größenangabe: immer kleiner als 800x600 !
	
	if (top.demoWindow!=null && !top.demoWindow.closed ){
                demoWindow=top.demoWindow;
                demoWindow.close();
    }	
		
	demoWindow = window.open(url,'demo','width='+width+',height='+height+',top=10,left=10,resizable=yes,'+args);
}

function changeLogo(nr) {
	document.getElementById('logo').src = 'images/logo'+nr+'.gif';
}

function formSubmit() {
	if(document.getElementById('name').value.length < 3 || document.getElementById('email').value.length < 7 || document.getElementById('text').value.length < 10)
		alert("Bitte geben Sie zumindest Name, E-Mail-Adresse und einen Text ein.");
	else
		document.getElementById('contactForm').submit();
}
