﻿// JavaScript Document
function relAction(a_selectionBox)
{
	var array_seznam = new Array("Nové vozy skladem", "Předváděcí vozy", "Premium selection", "BMW CleanEnergy" );
	var count_seznam = 4;
	var browName = navigator.appName;
	
	for (var x = 0; x < count_seznam; x++)
	{
		if (browName == "Microsoft Internet Explorer")
		{
			if (array_seznam[x] == a_selectionBox.options(a_selectionBox.selectedIndex).text)
			{
				switch (x)
				{
					case 0:
						window.location.href = 'index.php?link=newautos';
						break;
					case 1:
						window.location.href = 'index.php?link=9';
						break;
					case 2:
						window.location.href = 'index.php?link=premium';
						break;
					case 3:
						window.location.href = 'index.php?link=cleanenergy';
						break;
				}
			}
		}
		else
		{
			if (array_seznam[x] == a_selectionBox.value)
			{
				switch (x)
				{
					case 0:
						window.location.href = 'index.php?link=newautos';
						break;
					case 1:
						window.location.href = 'index.php?link=9';
						break;
					case 2:
						window.location.href = 'index.php?link=premium';
						break;
					case 3:
						window.location.href = 'index.php?link=cleanenergy';
						break;
				}
			}
		}
	}
}
