function Zoom(xlink, width, height){
	if (width && height) {
		var img = window.open('','','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,height=' + height + ',width=' + width);
		if (navigator.userAgent.indexOf("Opera") == -1) {
			img.document.writeln('<html><body bgcolor="#D6D3CE" style="padding: 0px; margin: 0px; border: 0px;"><div id="text" style="width: 100%; height: 100%; text-align: center; padding-top: 40px; font-family: tahoma; font-size: 12px;">Загрузка изображения...</div><div id="image" style="display: none;"><img src="' + xlink + '" alt="" onload="document.getElementById(\'text\').style.display = \'none\'; document.getElementById(\'image\').style.display = \'block\';" /></div></body></html>');
		} else {
			img.document.writeln('<html><body bgcolor="#D6D3CE" style="padding: 0px; margin: 0px; border: 0px;"><div id="image" style="display: block;"><img src="' + xlink + '" alt="" onload="document.getElementById(\'text\').style.display = \'none\'; document.getElementById(\'image\').style.display = \'block\';" /></div></body></html>');
		}
	} else {
		var img = window.open('','','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,height=100,width=200');
		img.document.writeln('<html><body bgcolor="#D6D3CE" style="padding: 0px; margin: 0px; border: 0px;"><div id="text" style="width: 100%; height: 100%; text-align: center; padding-top: 40px; font-family: tahoma; font-size: 12px;">Загрузка изображения...</div><div id="image" style="display: none;"><img src="' + xlink + '" alt="" onload="document.getElementById(\'text\').style.display = \'none\'; document.getElementById(\'image\').style.display = \'block\'; window.resizeTo(this.width+6, this.height+63)" /></div></body></html>');
	}
}

function zooom(id) {
	var h = document.getElementById(id).innerHTML;
	document.getElementById(id).innerHTML = h ? '' : '<a href="javascript:zooom(' + "'" + id + "'" + ')"><img src="' + id + '" border="0" /></a>';
}

arr01 = new Image();
arr01.src = 'images/arr01.gif';

arr01_active = new Image();
arr01_active.src = 'images/arr01_active.gif';

arr02 = new Image();
arr02.src = 'images/arr02.gif';

arr02_active = new Image();
arr02_active.src = 'images/arr02_active.gif';

dot02 = new Image();
dot02.src = 'images/dot02.gif';

dot02_active = new Image();
dot02_active.src = 'images/dot02_active.gif';

ico_home = new Image();
ico_home.src = 'images/ico_home.gif';

ico_home_active = new Image();
ico_home_active.src = 'images/ico_home_active.gif';

ico_sm = new Image();
ico_sm.src = 'images/ico_sm.gif';

ico_sm_active = new Image();
ico_sm_active.src = 'images/ico_sm_active.gif';

ico_mail = new Image();
ico_mail.src = 'images/ico_mail.gif'

ico_mail_active = new Image();
ico_mail_active.src = 'images/ico_mail_active.gif';

function preload_image(src) {
	image = new Image();
	image.src = src;
}

function change_image_src(id, src) {
	obj = document.getElementById(id);	
	if (obj) obj.src = src;
}

