var lastPopUpWindow = null;
function pop (sCase){
	// close the last pop-up.
	try {
		lastPopUpWindow.close ();
	} catch(e) {
	}
	switch (sCase){
	  // More Viewing Options
		case "video_trailer_teaser":
	  		lastPopUpWindow = window.open("trailerOptions/teaser_trailer_options.html","_blank","width=700,height=500");
	  	break;
		case "video_tvspot_clip1":
	  		lastPopUpWindow = window.open("trailerOptions/big_game_options.html","_blank","width=700,height=500");
	  	break;
		case "video_trailer_trailer1":
	  		lastPopUpWindow = window.open("trailerOptions/trailer_trailer1_options.html","_blank","width=700,height=500");
	  	break;
	
		//DOWNLOADS section
		case "wallpaper"  : //wallpaperID number, width
		case "wallpapers" :
			var id = pop.arguments[1];
			var width = pop.arguments[2];
			var height=0;
			switch (width){
				case "1600":
				case 1600:
				  height=1200;
				  break;
				case "1920":
				case 1920:
				  height=1200;
				  break;
				default : width=1920; height=1200; break;
			}
			window.open("downloads/wallpaper.html?id=" +id + "&width=" + width +"&height=" + height,"_BLANK","width=1024,height=700,scrollbars=1,resizable=1,toolbar=0,status=0,location=0");
			break;
			
		case "buddyicons":
		case "icons" :
			var iconURL = "downloads/icons.html";
			window.open(iconURL,"_blank","width=360,height=500,scrollbars=0,resizable=0,toolbar=0,status=0,location=0");
		  break;
		
		case "posters":
		  var id = pop.arguments[1];
		  var theFile;
		  switch (id) {
		    case "1":
		    case 1:
		      theFile = "posters/pdp_POS_1.zip";
		      break;
		  }
		  lastPopUpWindow = window.open("downloads/download.html?theFile="+theFile, "_blank", "width=380,height=450");
		  break;
		
		
		case "screensaver_mac" :
			lastPopUpWindow = window.open("downloads/download.html?theFile=assets/downloads/screensavers/PrinceOfPersiaScreensaver_MAC.zip","_blank","width=380,height=450");
		break;
		case "screensaver_pc":
			lastPopUpWindow = window.open("downloads/download.html?theFile=assets/downloads/screensavers/PrinceOfPersiaScreensaver_PC.zip","_blank","width=380,height=450");
		break;		
	
	}
}
