function img_over(txt_id, img_id) {
	
	txt_id = eval(txt_id);
	img_id = eval(img_id);

	txt_id.style.color = '#888888';
	img_id.style.filter = 'alpha(Opacity=80)';		
	}
	
function img_out(txt_id, img_id) {
	
	txt_id = eval(txt_id);
	img_id = eval(img_id);

	txt_id.style.color = 'BD131F';
	img_id.style.filter = 'alpha(Opacity=100)';
	}
	
	
function openmap() {

  var win;
  win = window.open("","_blank", "width=300,height=300");
  win.document.write("<html><head><title>Ñõåìà ïðîåçäà</title></head><body>");
  win.document.write('<div style="position:absolute;width:300px;height:300px;left:0px;top:0px">');
  win.document.write('<img src="images/map.gif"></div></body></html>');
}


