function fnInit(){
	if(!parent.conDevServer){
		//document.onselectstart = new Function("return false;");
		document.oncontextmenu = new Function("return false;");
		document.ondragstart = new Function("return false;");
	}
}

function fnChangeLang(oSelect){
	var sLanguageURL = oSelect.options[oSelect.selectedIndex].value;
	window.location.href = "../" + sLanguageURL + "/default.asp";
}

/* POPUPS */

var g_oPopup;

function fnShowPopup(sTopic){
	if(g_oPopup) g_oPopup.close();
	g_oPopup = window.showModelessDialog("popup.asp?topic=" + sTopic + "&fontsize=" + fnGetFontSize(), window, "dialogWidth:380px;dialogHeight:380px;help:no;scroll:no;status:no;");
}

function fnGetFontSize(){
	var iFontWidth = eFontSizeTester.offsetWidth;
	if(iFontWidth == 9) iFontWidth = 10;
	var iFontPercentage = Math.round((iFontWidth - 1)/12*1000)/10;
	return iFontPercentage;
}

/* POPUPS */
