// PopUp-Funktion
function openWindow(theURL,winName,features) {
	popup = window.open(theURL,winName,features+',scrollbars=0');
	popup.focus();
}

// Close PopUp Function
function closeWindow(){
	window.close();
}
// Statusleiste
function displayStatus(msg) {
  status=msg;
  document.returnValue = true;
}

// Stylesheet-Auswahl

// eLearning Link
function PADIeLearning() {
accessWin = window.open('https://www.padi.com/padi/elearning/default.aspx?irra=6044','','scrollbars=yes,top='+(screen.height/8)+',left='+(screen.width/8)+',width=1000,height=700,resizable=yes');
window.accessWin.focus();
}