function setCurrency()
{
	$('form#setCurrency').submit();
}
function srch_submit(){
	$("form#searchbox").submit();
}
function addBookmark(url, title)
{
    if (window.sidebar)
        return window.sidebar.addPanel(title, url, "");
    else if ( window.external )
        return window.external.AddFavorite( url, title);
    else if (window.opera && window.print)
        return true;
    return true;
}
var lastMenu = '';
var needHide = false;
var timerMenu = null;
function showMenu(obj,str,ox,oy)
{
    var intOffx = 5;
    var intOffy = 10;
    if(ox) intOffx = ox;
    if(oy) intOffy = oy;
    if(needHide == true && lastMenu != '')
    {
        clearTimeout(timerMenu);
        hideMenu(lastMenu);
    }
    var posX = obj.offsetLeft;
    var posY = obj.offsetTop;
    var aBox = obj;
    var objShow = document.getElementById(str);
    objShow.style.left = posX-intOffx+"px";
    objShow.style.top = posY-intOffy+"px";
    objShow.style.display = "";
    lastMenu = str;
    needHide = true;
    timerMenu = setTimeout('setHidden("'+str+'")',1000);
}
function hideMenu(str)
{
    var objShow = document.getElementById(str);
    objShow.style.display = "none";
    needHide = false;
}
function setHidden(str)
{
    if(needHide == true)
        timerMenu = setTimeout('hideMenu("'+str+'")',300);
}
