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 cform(){
	but = dId("sbm");
	if(document.rent.fio.value!='' && document.rent.phone.value!='') but.disabled = false;
	else but.disabled = true;
}
function more(){
	b = dId("more"); b.style.display = 'none';
	t = dId("news"); t.style.display = 'block';
}
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 map(map){
	window.open('http://sumotori.ru/images/place/'+map,'map','copyhistory=0,directories=0,width=430,height=430,left=200,top=250,location=0,menubar=0,resizable=1,scrollbars=0,status=0,toolbar=0').focus();
}