function switchBlock(id){
	var block = document.getElementById(id);
	if (block.style.display != 'none') {
		block.style.display = 'none';
		//setCookie('block_'+id, 'hidden');
	} else {
		block.style.display = 'block';
		//setCookie('block_'+id, 'visible');
	}
	return false;
}
function switchSearch(a){
	var s = document.getElementById('search');
	if (s.style.display == 'block'){
		s.style.display = 'none';
		a.className = 'search';
	} else {
		s.style.display = 'block';
		a.className = 'search search_on';
	}
	return false;
}
function showmap(fname){
	document.images['gmap'].src='images/skin/map_'+fname+'.gif';
}
function showSub(id){
	did = "d"+id;
	d = document.getElementById(cid);
	d.style.display = 'none';
	d = document.getElementById(did);
	d.style.display = 'block';
	cid = did;
}
function dId(ob) {return document.getElementById(ob);}
function printv(text){
	pw = window.open('','print','copyhistory=0,directories=0,height=555,width=640,left=190,top=130,location=0,menubar=0,resizable=0,scrollbars=1,status=0,toolbar=0');
	pw.document.write(text);
	pw.document.close();
}
function eform(id){
	var anketa = window.open("rent.php?id="+id, "rent", "width=660,height=600,menubar=0,scrollbars=1");
}