function showLanguage()
{
	var languageinfo = navigator.language ? navigator.language : navigator.userLanguage; 
	alert ("And the Language is: " + languageinfo); 
}

function HidView(item) 
{

	if (item.style.display == 'none') 
	{
		for (var i = 0; i < document.getElementsByTagName("span").length; i++) 
		{
		document.getElementsByTagName("span")[i].style.display = "none";
	    }
    item.style.display = '';
	} 
	else 
	{
    item.style.display = 'none';
	}
}

function OpenWindow() 
{
	iMyWidth = (window.screen.width/2) - (400 + 10);
	iMyHeight = (window.screen.height/2) - (300 + 25);
	Fokus = window.open("", "JSL","width=800,height=600,resizable=no,left=" + iMyWidth + ",top=" + iMyHeight + ",screenX=" + iMyWidth + ",screenY=" + iMyHeight + ",scrollbars=no");
	Fokus.focus();
}

function ShowImage(url) 
{ 
	document.getElementById('full_img').src = url; 
}
function openWindowdva() 
{
window.open("","JSL",'toolbar=0,location=0,scrollbars=0,width=300,height=300,resizable=0,top=40,left=40');
}