//////////////////////////////////////////////////////////////
//Jens's drop down selection of store and purchase options	//
//////////////////////////////////////////////////////////////

/*Check what drop down option selected and for what game, then load store in new window.
 */
function SelectStore(sDropDown)
{
	var temp = document.getElementById(sDropDown);
	var iStore = temp.options[temp.selectedIndex].value;

	if(iStore == "nothing") return;
	else window.location = iStore;
} 
  
