//Required scripts: CookieHandler.js
function PopPlayerUp(album) {
	var playerPath = "WimpyLTLO/myWimpy.html"; //set default album here through its player path
	if (album == "ADU") {
		playerPath = "WimpyADU/myWimpy.html"; //change to alternate album
		}
	playerWindow = window.open(playerPath,"PopUpPlayer", "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=540,height=275");
	WriteSessionCookie("PlayerPopped", "popped", "/"); //requires CookieHandler.js	
	}

function StartPageUp() { //intended to be used w/ body's OnLoad method
	var sessionCookiesWorkingness = TestSessionCookies(); //requires CookieHandler.js
	var playerPoppedness;
	if (sessionCookiesWorkingness == true) {
		playerPoppedness = GetCookieValue("PlayerPopped"); //requires CookieHandler.js
		if (playerPoppedness != "popped") {
			PopPlayerUp("LTLO"); //requires CookieHandler.js; pops MP3 player window up and writes cookie to indicate player has popped up successfully
			}
		}
	}


