//-------------------------------------------------------------------------------------------------------------------
// systemove funkce - ruzne funkce zajistujici javascriptovou obsluhu stranek
//-------------------------------------------------------------------------------------------------------------------

function wnd_open(img_url, target) {
	var new_wnd = window.open(img_url, target, "resizable=yes, toolbar=no, menubar=no, scrollbars=no, status=yes");
}

function mov_qm(id) {
	var obj = document.getElementById(id);
	obj.style.visibility = "visible";
	obj.style.display = "inline";
	obj.style.zindex = 1;
}

function mou_qm(id) {
	var obj = document.getElementById(id);
	obj.style.visibility = "hidden";
	obj.style.display = "none";
	obj.style.zindex = -1;
}

//funkce na dynamicke efekty polozek menu pro najeti/odjeti mysi
function mov(obj) {
	/*obj.style.backgroundColor='#E7D3CE';
	var atxt = obj.firstChild;
	atxt.style.color="#000000";*/
	//var bullet_obj = obj.firstChild;
	//bullet_obj.style.width = 0;
}

function mou(obj) {
	/*obj.style.backgroundColor='transparent';
	var atxt = obj.firstChild;
	atxt.style.color="#7B5D73";*/
	//var bullet_obj = obj.firstChild;
	//bullet_obj.style.width = 0;
}

var itmp = new Image();
	itmp.src = "img/mi_bg_repeat.png";

