//
// Copyright (c) 2006, Android Technologies, Inc.
//
// FILE: gotoshow.js

// Go to the correct show given the user's selection.  There must
//  be an OPTION box on the current page called "cmbShowlist" with
//  a list of show numbers in it.
//
// Update this function as new shows get added.
function goToShow()
{
	// Find the show list OPTION box.
	var optBox = document.getElementById("cmbShowlist");
	
	if (!optBox)
	{
		alert("(gotoShow) Unable to find the show list option box.");
		return;
	} // if (!optBox)
	
	var optBoxVal = optBox.value;
	
	// Go to the correct show, given the show number.
	if (optBoxVal == "1")
	{
		document.location.href = "http://www.radiomeow.com/blog/2006/04/is-dry-cat-food-killing-your-cat.html";
		return;
	} // if (optBoxVal == "1")
	
	// Must be an invalid show number.	
	alert("(gotoShow) Invalid show number: " + optBoxVal + ".");
	return;
} // function goToShow()
