function OpenBigSizedImage(_urlLocation, _width, _height)
{
	F1 = window.open(_urlLocation, "Bilddetail", "width=" + _width + ",height=" + _height + ",left=100,top=200");
	F1.focus();
}

function OpenGlossary(_serverPath)
{
	F2 = window.open(_serverPath, "Glossar", "width=300,height=200,left=100,top=200");
	F2.focus();
}
function OpenNewWindow(_url) 
{
	windowHandle = window.open(_url, "NewWindow", "width=600,height=430,left=50,top=200");
	windowHandle.focus();
}

