function pop(sCase) {
	switch(sCase) {
//on the homepage
		case "restorationVideo":
				launchPopUpWindow('restorationVideo.html', 'restorationVideo', 500, 339);
		break;
		case "sweepstakes":
			location.href = "sweepstakes_page.html"
			/*
			try {
				win.close();
			}catch(e){		
			}	
			win = window.open('sweepstakes_page.html', 'sweepstakes_page');
			win.focus();
			*/
		break;
		case "musicVideo":
			launchPopUpWindow('http://www.totaleclips.com/player/splash.aspx?clipid=e28021&custid=3&playerid=2', 'trailer', 340, 480);
			doTracking("Music_Video");
		break;
		case "order":
			try {
				win.close();
			}catch(e){		
			}			
			win = window.open('http://go-disneyshopping.com/SHTheLittleMermaidPlatinumEditionDVDwbonuslithos', 'order');
			win.focus();
			doTracking("ORDER_NOW");
		break;
//2-Disc DVD section
		case "dvdHighlights":
				launchPopUpWindow('dvdHighlights.html', 'dvdHighlights', 770, 519);
		break;

//Downloads section
		case "wallpaper":
			var iWidth=pop.arguments[2];
			if (iWidth == 1280){
				iHeight = 1024;
			} else {
				var iHeight = iWidth/4*3;
			}
			/*
			var myHeight = iHeight+50;
			var myWidth = iWidth+25;
			*/
			var myHeight = 600;
			var myWidth = 800;			
			launchPopUpWindow("wallpaper.html?iNum="+pop.arguments[1]+"&iWidth="+iWidth+"&iHeight="+iHeight, 'wallpaper'+myWidth, myWidth, myHeight, 1, true);
		break;
		case "buddyicons":
				launchPopUpWindow('buddyicons.html', 'small', 610, 536);
		break;
		case "screensaver":
			switch(pop.arguments[1]) {
				case "mac":
					myDownloadPath="assets/downloads/screensavers/pequenasereia_macosx.sit.hqx";
					doTracking('download_mac');
				break;
				case "macos9":
					myDownloadPath="assets/downloads/screensavers/pequenasereia_macos89.sit.hqx";
					doTracking('download_mac');
				break;
				default:
					myDownloadPath="assets/downloads/screensavers/pequenasereia_pc.zip";
					doTracking("download_pc");
				break;
			}
			launchPopUpWindow('download.html?theFile='+myDownloadPath, 'download', 770, 335);
		break;
		case "emailSig":
			launchPopUpWindow('email_sig.html', 'small', 610, 536);
		break;
		case "getOwnTrailer":
			launchPopUpWindow('get_own_trailer.html', 'small', 610, 536);
		break;
		case "countdownTicker":
			launchPopUpWindow('blogtools_ticker.html', 'small', 610, 536);
		break;
		case "siteTrafficCounters":
			launchPopUpWindow('blogtools_counter.html', 'small', 610, 536);
		break;
//Trailers & Clips Section

//Fun & Games section
		case "game":
			launchPopUpWindow('games/aventuraariel/arielsadventure.html', 'game1', 700, 550);
		break;
		case "game2":
			alert('pop up not coded, but tracking in place!');
		break;
		case "stencil":	
			launchPopUpWindow('stencil'+pop.arguments[1]+'.html', 'small', 610, 536, 5, true);
		break;
		case "mask":
			launchPopUpWindow('mask'+pop.arguments[1]+'.html', 'small', 610, 536, 5, true);
		break;
		case "mobile":
			launchPopUpWindow('mobiles'+pop.arguments[1]+'.html', 'small', 610, 536, 5, true);
		break;
		case "activity":
			launchPopUpWindow('activity'+pop.arguments[1]+'.html', 'small', 610, 536, 5, true);
		break;
		case "emergency":
			launchPopUpWindow('emergencysheet.html', 'small', 610, 536, 5, true);
		break;
//More Links section
		case "moreLinks":
			alert("pop-up not yet programmed");
		break;
//Order Now section
		
	
		default:
			alert('Unimplemented pop call: '+sCase);
		break;
	}
}