function getURL(URL) 
{
	main.location.href = URL;
	
	// set the sidebar photo
	switch (URL)
	{
		case "contacts.aspx":
			sidebar.location.href = "sidebar.aspx?ID=1";
			break;
		case "fan_club.aspx":
			sidebar.location.href = "sidebar.aspx?ID=4";
			break;
		case "fan_photos.aspx":
			sidebar.location.href = "sidebar.aspx?ID=3";
			break;
		case "fan_photos_2004.aspx":
			sidebar.location.href = "sidebar.aspx?ID=3";
			break;
		case "fan_photos_2005.aspx":
			sidebar.location.href = "sidebar.aspx?ID=3";
			break;
		case "fan_photos_2006.aspx":
			sidebar.location.href = "sidebar.aspx?ID=3";
			break;
		case "forum.aspx":
			sidebar.location.href = "sidebar.aspx?ID=3";
			break;
		case "free_for_fans.aspx":
			sidebar.location.href = "sidebar.aspx?ID=6";
			break;
		case "gallery.aspx":
			sidebar.location.href = "sidebar.aspx?ID=2";
			break;
		case "home.aspx":
			sidebar.location.href = "sidebar.aspx?ID=5";
			break;
		case "hall_of_fame.aspx":
			sidebar.location.href = "sidebar.aspx?ID=6";
			break;
		case "online_store.aspx":
			sidebar.location.href = "sidebar.aspx?ID=4";
			break;
		case "press.aspx":
			sidebar.location.href = "sidebar.aspx?ID=7";
			break;
		default:
			sidebar.location.href = "sidebar.aspx?ID=5";				
	}
}

function showPhoto(fileName, width, height)
{
	window.open('gallery_popup.aspx?FileName=' + fileName, 'galleryphoto', 'WIDTH=' + (width + 10) + ',HEIGHT=' + (height + 10) + ',SCROLLBARS=NO,RESIZABLE=NO');
}

function showFanPhoto(fileName, width, height)
{
	window.open('fan_photo_popup.aspx?FileName=' + fileName, 'fanphoto', 'WIDTH=' + (width + 10) + ',HEIGHT=' + (height + 10) + ',SCROLLBARS=NO,RESIZABLE=NO');
}

function showWallpaper(fileName, width, height)
{
	window.open('wallpaper_popup.aspx?FileName=' + fileName, 'wallpaper', 'WIDTH=' + width + ',HEIGHT=' + height + ',SCROLLBARS=NO,RESIZABLE=NO');
}