function reloadwithsportid( value )
{
	if(value=="")
	{
		window.location.href = "index.php";
	}
	else
	{
		window.location.href = "product.php?sportid="+value;
	}
}

function reloadwithfeatureid( value ){
	var frameid				= document.getElementById('frame').value;
	var prod_team_name		= document.getElementById('prod_team_name').value;
	window.location.href	= "product.php?prod_team_name="+prod_team_name+"&playerid="+value+"&sportid="+frameid;
}

function reloadwithteamid( value ){
	var frameid				= document.getElementById('frame').value;
	var playerid			= document.getElementById('feature').value;
	window.location.href	= "product.php?prod_team_name="+value+"&sportid="+frameid;
}
