function zentriert(pInhalt, pName, pBreite, pHoehe, pScroll, pOben, pLinks) {
	
	pName = 'Detailansicht';
	pBreite = 650;
	pHoehe = 500;
	pScroll = 'no';
	
	eLeft = (screen.width-pBreite)/2;
	eTop = (screen.height-pHoehe)/2;
	zenwin = window.open(pInhalt, pName, 'width=' + pBreite + ', height=' + pHoehe + ', top=' + eTop + ', left=' + eLeft + ',scrollbars=' + pScroll);
}

function openHelp() {
	pBreite = 800;
	pHoehe = 600;
	
	eLeft = (screen.width-pBreite)/2;
	eTop = (screen.height-pHoehe)/2;
	helpwin = window.open('http://www.knospe-dmt.de/help/index.htm', 'Hilfe', 'width='+pBreite+', height='+pHoehe+', top='+eTop+', left='+eLeft+', menubar=no, resizable=yes, status=no, toolbar=no, scrollbars=yes');
}

function openManual(lang) {
	
	pBreite = 800;
	pHoehe = 600;
	
	eLeft = (screen.width-pBreite)/2;
	eTop = (screen.height-pHoehe)/2;
	if (lang == "en") manualwin = window.open('http://files.knospe-dmt.de/kommutator_info/premetec/kommutator_info_manual_EN.pdf', 'Manual', 'width='+pBreite+', height='+pHoehe+', top='+eTop+', left='+eLeft+', menubar=no, resizable=yes, status=no, toolbar=no, scrollbars=yes');
	else manualwin = window.open('http://files.knospe-dmt.de/kommutator_info/premetec/kommutator_info_manual_DE.pdf', 'Manual', 'width='+pBreite+', height='+pHoehe+', top='+eTop+', left='+eLeft+', menubar=no, resizable=yes, status=no, toolbar=no, scrollbars=yes');
}

function openKiSetup() {
	
	pBreite = 80;
	pHoehe = 60;
	
	eLeft = (screen.width-pBreite)/2;
	eTop = (screen.height-pHoehe)/2;
	manualwin = window.open('http://files.knospe-dmt.de/kommutator_info/premetec/setup.exe', 'kommutatorInfo', 'width='+pBreite+', height='+pHoehe+', top='+eTop+', left='+eLeft+', menubar=no, resizable=yes, status=no, toolbar=no, scrollbars=no');
}

function openOrSetup() {
	
	pBreite = 80;
	pHoehe = 60;
	
	eLeft = (screen.width-pBreite)/2;
	eTop = (screen.height-pHoehe)/2;
	manualwin = window.open('http://files.knospe-dmt.de/kommutator_info/solartron/setup.exe', 'Orbit', 'width='+pBreite+', height='+pHoehe+', top='+eTop+', left='+eLeft+', menubar=no, resizable=yes, status=no, toolbar=no, scrollbars=no');
}

function openWiSetup() {
	
	pBreite = 80;
	pHoehe = 60;
	
	eLeft = (screen.width-pBreite)/2;
	eTop = (screen.height-pHoehe)/2;
	manualwin = window.open('http://files.knospe-dmt.de/kommutator_info/wibukey/setup.exe', 'WiBuKey', 'width='+pBreite+', height='+pHoehe+', top='+eTop+', left='+eLeft+', menubar=no, resizable=yes, status=no, toolbar=no, scrollbars=no');
}

function openPmSetup() {
	
	pBreite = 80;
	pHoehe = 60;
	
	eLeft = (screen.width-pBreite)/2;
	eTop = (screen.height-pHoehe)/2;
	manualwin = window.open('http://files.knospe-dmt.de/profilmess/setup.exe', 'ProfilMess', 'width='+pBreite+', height='+pHoehe+', top='+eTop+', left='+eLeft+', menubar=no, resizable=yes, status=no, toolbar=no, scrollbars=no');
}

var submitOK = true;

function unDelete(msg) {
	if (confirm(msg)) {
		submitOK = true;
	} else {
		submitOK = false;
	}
}

function accSub() {
	if (submitOK == false) {
		submitOK = true;
		return(false);
	} else {
		return(true);
	}
}