// Functions

// Pop Up Window Function
var popUpWin=0;
function popUpWindow(URLStr, left, top, width, height)
{
  //if(popUpWin)
  //{
    //if(!popUpWin.closed) popUpWin.close();
  //}
  	popUpWin = open(URLStr, 'popUpWin', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbar=yes,resizable=yes,width='+width+',height='+height);
	popUpWin.focus()
}

function openReg() {
	 MM_openBrWindow('/anmeldung/anmeldung.php','sasReg','scrollbars=yes,resizable=yes,width=600,height=770');
}

function openCourse(theCoursePath) {
	MM_openBrWindow(theCoursePath,'sasInfo','scrollbars=yes,resizable=yes,width=450,height=500');
}


function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
