function white (id) {
	document.getElementById(id).style.backgroundColor = "#ffffff";
}

function whiteOFF (id) {
	document.getElementById(id).style.backgroundColor = "";
}

function LoadSite2(site, where) {
	//alert (link1);
	var req = mint.Request();
	req.OnSuccess = function() {
	}
	req.OnLoading = function() {
	    	//$(where).innerHTML = "checking ...";
	    	//document.getElementById(frm_id).disabled = true;
	}
	//req.Send(site, where);
	if (where) {
		req.Send(site, where);
	}
}

function LoadSite(site, where, link1, link2) {
	//alert (link1);
	var req = mint.Request();
	req.OnSuccess = function() {
	}
	req.OnLoading = function() {
	    	//$(where).innerHTML = "checking ...";
	    	//document.getElementById(frm_id).disabled = true;
	}
	//req.Send(site, where);
	if (where) {
		req.AddParam("link1", link1);
		req.AddParam("link2", link2);
		req.AddParam("dzial_main", site);
		req.Send("ajax_show_navig.php", where);
	}
	//if (site2) req.Send(site2, where2);
}