// *******************************************************************
// *********************  Nikkenheimer Functions  ********************
// *******************************************************************

function invertSwap() {
	if(document.all) {
		if(swapNum<10) {
			if(document.all.playerPic.style.filter!='invert(enabled=1)') {
				document.all.playerPic.style.filter='invert(enabled=1)';
			} else {
				document.all.playerPic.style.filter='invert(enabled=0)';
			}
			swapNum++;
			setTimeout("invertSwap()",30);
		}
	}
}


// *********************************************************
// *********************  MM Functions  ********************
// *********************************************************

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