function openCenteredWindow(url, name, width, height)
{
	var isIE = (window.navigator.userAgent.indexOf("MSIE") > 0);
	
	var left = parseInt((screen.availWidth/2) - (width/2));
	var top = parseInt((screen.availHeight/2) - (height/2));
	var windowFeatures = ((!isIE) ? "outerWidth=" + width + "," : "") +
	    "width=" + width + "," + 
	    "height=" + height + "," +
		"status=no,resizable,left=" + left + ",top=" + top + 
		",screenX=" + left + ",screenY=" + top;
	myWindow = window.open(url, name, windowFeatures);
	myWindow.focus();
}

function OpenDictionaryWindow(key) 
{
	if (key == undefined)
	{
		key = '';
	}
	openCenteredWindow('../Pages/Dictionary.aspx?key='+ key + '#' + key, 'Dictionary', 620, 410);
}


