function SwitchLanguageImage(_language,_current,_mouseover)
{
	if(_mouseover)
		document.getElementById("img_lang_" + _language).src = "./images/main_flag_"+_language+"_color.gif";
	else
		document.getElementById("img_lang_" + _language).src = "./images/main_flag_"+_language+"_gray.gif";
	
	if(!_mouseover)
		document.getElementById("img_lang_" + _current).src = "./images/main_flag_" + _current + "_color.gif";
}

function Filter(e) 
{
	var ascii;
	if (e && e.charCode) 
		ascii = e.charCode;
	else if (event && event.keyCode)
		ascii = event.keyCode;
	else 
		return true;
	if (ascii < 48 || ascii > 57) 
		return false;
	return true;
}

function Reset()
{
	if(document.getElementById("spde_1_category")!=null)
		document.getElementById("spde_1_category").selectedIndex=0;
		
	if(document.getElementById("partner_select")!=null)
		document.getElementById("country_select").selectedIndex=0;
}

function SetFormatting(_value,_productid)
{
	var found = false;
	for(var i = 10;i >= 0;i--)
	{
		if(document.getElementById("p" + _productid +"_" + i) != null)
		{
			if(!found && !isNaN(_value) && parseInt(_value) >= parseInt(document.getElementById("p" + _productid +"_" + i).alt))
			{
				found = true;
				document.getElementById("s" + _productid +"_" + i).style.fontWeight = 'bold';
				document.getElementById("d" + _productid +"_" + i).style.fontWeight = 'bold';
				document.getElementById("d" + _productid +"_" + i).className = 'spde_text_red_tiny';
				document.getElementById("p" + _productid +"_" + i).src = './images/main_shop_box_checked.gif';
			}
			else
			{
				document.getElementById("s" + _productid +"_"+ i).style.fontWeight = 'normal';
				document.getElementById("d" + _productid +"_"+ i).style.fontWeight = 'normal';
				document.getElementById("d" + _productid +"_" + i).className = 'spde_text_light_medium';
				document.getElementById("p" + _productid +"_" + i).src = './images/main_shop_box_unchecked.gif';
			}
		}
	}
	return false;
}
