function OpenWindowGen( Name, Url, Width, Height, StatusBar ) {
		alert( "You need to be logged in to access this feature.\n\nThe login box is on your left hand underneath the menu items.\n\nIf you've forgotten your password, click on \"Forgotten Password\" right under the login box." )
}

function OpenWindowGenMem( Name, Url, Width, Height, StatusBar, memName, pID ) {
	if ( confirm( "You need to be logged in to see this profile.\n\nHowever, if you wish to send " + memName + " an email, click \"OK\", otherwise click \"Cancel\"" ) ) {
		var nameR;
		nameR = memName.replace( ", ", "+" );
		nameR = nameR.replace( " ", "+ " );
		OpenWindowGenSW( "stats", "http://chsa.net/Site_Content/sendMail.asp?recipient=" + pID + "&N=" + nameR, 550, 400, true )
	}
}

function OpenWindowGenMemS( Name, Url, Width, Height, StatusBar, memName, pID ) {
	if ( confirm( "You need to be logged in to see this profile.\n\nHowever, if you wish to send " + memName + " an email, click \"OK\", otherwise click \"Cancel\"" ) ) {
		var nameR;
		nameR = memName.replace( ", ", "+" );
		nameR = nameR.replace( " ", "+ " );
		OpenWindowGenEM( "stats", "http://chsa.net/Site_Content/sendMail.asp?recipient=" + pID + "&N=" + nameR, 550, 400, true )
	}
}