function open_window(url, sirka, vyska, name, scrollbars, resizable, titlebar, toolbar, menubar)
{
	var width = new String();
	var height = new String();

	new_window = window.open(url, name, "height=" + vyska + ", width=" + sirka + ", toolbar=" + toolbar + ", titlebar=" + titlebar + ", scrollbars=" + scrollbars + ", menubar=" + menubar + ", resizable=" + resizable);
	new_window.focus();
}


function login_script(elm){
	if (!elm.base) elm.base = elm.value
	if (elm.value == elm.base) elm.value = "";
	else if (elm.value == "") elm.value = elm.base;
}

function password_script(elm){
	if (!elm.base) elm.base = elm.value
	if (elm.value == elm.base) elm.value = "";
	else if (elm.value == "") elm.value = elm.base;
}
