<!--

//big image
function big_img(imgname)
{
	window.open('img/photo/'+imgname+'b.jpg','','width=610,height=460,status=1,toolbar=0,menubar=0,resizable=0,top=0,left=0');
}

//map image
function map(imgname)
{
	window.open('img/map/'+imgname,'','width=688,height=492,status=1,toolbar=0,menubar=0,resizable=0,top=0,left=0');
}

//load images
if(document.images)
{
	img12 = new Image();
	img12.src = "img/button_geo/about_2.jpg";
	//
	img22 = new Image();
	img22.src = "img/button_geo/diagnostics_2.jpg";
	//
	img32 = new Image();
	img32.src = "img/button_geo/laboratory_2.jpg";
	//
	img42 = new Image();
	img42.src = "img/button_geo/healty_2.jpg";
	//
	img52 = new Image();
	img52.src = "img/button_geo/news_2.jpg";
	//
	img62 = new Image();
	img62.src = "img/button_geo/contacts_2.jpg";
}

//image over
function image_over(img_name, lang)
{
	if(document.images)
	{
		document.images[img_name].src = "img/button_"+lang+"/"+img_name+"_2.jpg";
	}
}

//image out
function image_out(img_name, lang)
{
	if(document.images)
	{
		document.images[img_name].src = "img/button_"+lang+"/"+img_name+"_1.jpg";
	}
}

//image title
function image_title(img_name, lang)
{
	if(document.images)
	{
		document.images["rubrike_title"].src = "img/title/"+img_name+"_"+lang+".jpg";
	}
}


// -->