
function hideCSDropDown(dropDownLink, dropDownLinkClass, dropDownPane, dropDownOverlay)
{	
    document.getElementById(dropDownLink).className	= dropDownLinkClass;
    document.getElementById(dropDownPane).style.visibility = 'hidden';
}
function showCSDropDown(dropDownLink, dropDownLinkClass, dropDownPane, dropDownOverlay, showPipeLeft, showPipeRight)
{			
    document.getElementById(dropDownLink).className	= dropDownLinkClass+"ON";
    document.getElementById(dropDownPane).style.top =  '30px';
    document.getElementById(dropDownPane).style.visibility = 'visible';
    document.getElementById("localizationPaneCtry2").style.marginLeft  =
    document.getElementById("localizationCtryLink").offsetWidth-1+"px";
}
