



function launchSupport(){
output = open("http://eatech.custhelp.com","SUPPORT","toolbar=no,scrollbars=1,resizable=1,height=520,width=650,screenX=1,screenY=1");
setTimeout('output.focus();', 50);

}

function launchMessageBoards(){
output2 = open("/webcore/boards.jsp?mbURL=http://boards.ea.com/messages?14@@/EA%20SPORTS/Game%20Forums/MVP%20Baseball","Message_Boards");
setTimeout('output2.focus();', 50);

}

function launchStore(){
		output_p = open("/platforms/games/mvpbaseball2003/store.jsp","STORE","toolbar=no,scrollbars=0,resizable=1,height=224,width=320,screenX=1,screenY=1");
		setTimeout('output_p.focus();', 50);
		return;
}

function launchScreenShots(selection){
output = open(selection,"SCREENSHOTS","toolbar=no,scrollbars=0,height=401,width=450,screenX=1,screenY=1");
setTimeout('output.focus();', 50);

}

function launchVideo(selectedVideo){

 if(navigator.appName == "Netscape"){ winSize = 550; }
 else { winSize = 526; }
	
	outputVideo = open(selectedVideo,"VIDEOS","toolbar=no,scrollbars=0,height=310,width="+winSize+",screenX=1,screenY=1");
	setTimeout('outputVideo.focus();', 50);
}

function changeLang()
{ 
//document.location = document.NBA02.langSel.options[document.NBA02.langSel.selectedIndex].value;
 }
 
function popWallPaper(choice) {
	if(confirmLegal()) {
		var selectedPage = "/platforms/games/mvpbaseball2003/wp_download.jsp?wp="+choice;
		outputWallpaper = open(selectedPage,"WALLPAPERS");
		setTimeout('outputWallpaper.focus();', 50);	
	} 
}

function downloadVideos(videoURL, n) {
	var baseFtpUrl = videoURL;
	var selectedVideo = document.forms[n].VidSel.options[document.forms[n].VidSel.selectedIndex].value;

	if (selectedVideo != "FALSE") {
		if(confirmLegal()) {
			var choice = baseFtpUrl + selectedVideo;
			window.location = choice;
		} 
	}
}

