function showAllPromos()
{
	document.localeform.onlyTranslatedPromos.value = 'false';
	document.localeform.submit();
}

var browserCheck = "true";


function goToLink(pSelect)
{
	if (pSelect[pSelect.selectedIndex].value.substring(0,4)=="http")
	{
		window.open(pSelect[pSelect.selectedIndex].value,'_blank');
	}
	else if (pSelect[pSelect.selectedIndex].value.substring(0,3)=="www")
	{
		window.open("http://" + pSelect[pSelect.selectedIndex].value, '_top');
	}
	else
	{
		window.open(pSelect[pSelect.selectedIndex].value, '_top');
	}
}
