<!--
function showButtonImg(obj,imgFileName,imgPath)
{	
	obj.src = imgPath + '/core/button/' + imgFileName + '.gif';
}


function showFlagImg(obj,imgFileName,imgPath)
{	
	obj.src = imgPath+'/flag/' + imgFileName + '.gif';
}
	
function showChangeCountry(imgPath) {
    document.getElementById("cc-countries").style.display = "block";
    document.getElementById("cc-button").style.backgroundImage = "url(" + imgPath + "/core/nav-arrow-selected.gif)";
}
function hideChangeCountry(imgPath) {
    document.getElementById("cc-countries").style.display = "none";
    document.getElementById("cc-button").style.backgroundImage = "url(" + imgPath + "/core/nav-arrow.gif)";
}