function changeMenu()
{
	if (document.menuform.menu.options[menuform.menu.selectedIndex].value != "-")
	{
		location.href=(document.menuform.menu.options[menuform.menu.selectedIndex].value)
	}
}

function openWin(ID,width,height,language)
{
	//var centered;
	x = (screen.availWidth - width) / 2;
	y = (screen.availHeight - height) / 2;
	centered =',width=' + width + ',height=' + height + ',left=' + x + ',top=' + y + ',scrollbars=yes,resizable=no,status=no';
	filename = "../includes/news_detail.php?newsID=" + ID + "&lang=" + language;
        
        ok = window.open(filename, "ShowPic", centered);
}

function showpic(pic,width,height)
{
	//var centered;
	x = (screen.availWidth - width) / 2;
	y = (screen.availHeight - height) / 2;
	centered =',width=' + width + ',height=' + height + ',left=' + x + ',top=' + y + ',scrollbars=yes,resizable=no,status=no';
	filename = "photodetail.php?pic=" + pic;
        
        ok = window.open(filename, "ShowPic", centered);
}
