function highlightRightMenu(obj)
{
	obj.getElementsByTagName("A")[0].style.textDecoration="underline";
}
function resetRightMenu(obj)
{
	obj.getElementsByTagName("A")[0].style.textDecoration="none";
}

function hoverLink(obj)
{
		obj.style.backgroundColor="#FFFFFF";
}
function resetLink(obj)
{
		obj.style.background="none";
}

function PopupPic(sPicURL) 
{
    var img = new Image();
    img.src = sPicURL;         
    var w = img.width;
    var h = img.height;
    //var winl = (screen.width - w) / 2;
    //var wint = (screen.height - h) / 2;
    //var winprops = 'height=600 ,width=600,top='+wint+',left='+winl+'resizable=false';
    window.open( "/popups/vizualizareFotografie.html?"+sPicURL, "", "width="+w+",height="+h+",status=yes,resizable=no,scrollbars=no");
    
} 

function changeLanguage( lang )
{       
    //if($("Menu_hLang").value !=lang)
    
    {          
        $("Menu_hLang").value = lang;
        $("Menu_hAction").value = "ChangeLanguage";
        $("frmMain").submit();
    }       
}
function $() 
    {
	if (arguments.length>1) {
		return false;
	}
	if (arguments.length<1) {
		return false;
	}

	var element = arguments[0];

    if (typeof element == 'string') {
        if (document.getElementById) {
            element = document.getElementById(element);
        } else if (document.all) {
            element = document.all[element];
        }
    }
	
	return element;
    }
