function popupWindow(Href, Target, Width, Height) {
	window.open(Href, Target, "width=" + Width + ",height=" + Height + ",left=" + (screen.width - Width) / 2 + ",top=" + (screen.height - Height) / 2 + ",resizable=yes,scrollbars=yes");
}


function chooseForm() {
	if (document.getElementById("marketline")) {
		if (document.getElementById("marketline").options[document.getElementById("marketline").selectedIndex].value == "m1") {
			document.getElementById("eaukcio").style.display = "block";
			document.getElementById("username").focus();
		}
		else {
			document.getElementById("eaukcio").style.display = "none";
		}
		if (document.getElementById("marketline").options[document.getElementById("marketline").selectedIndex].value == "m2") {
			document.getElementById("iszr").style.display = "block";
			document.getElementById("login").focus();
		}
		else {
			document.getElementById("iszr").style.display = "none";
		}
	}
}


function changeSearch(input_text) {
	var input_field = document.getElementById("searchfield");
	if (input_field) {
		input_field.onblur = function () {
			if (this.value == "") {
				this.value = input_text;
			}
		}
		input_field.onfocus = function () {
			if (this.value == input_text) {
				this.value = "";
			}
		}
	}
}

function init() {}


if (window.addEventListener) window.addEventListener("load",init,false)
else if (window.attachEvent) window.attachEvent("onload",init)