var incWin;

// Создание окна для просмотра больших фото
function inc_view(url) {

	params = "width=500,height=500,resizable=0,status=0,scrollbars=0,toolbar=0,location=0,directories=0,menubar=0"

	if (incWin == null || incWin.closed) {
		incWin = window.open(url, "incWin", params);
	}
	else {
		incWin.location.href = url;
	}

	incWin.focus();
}

// Закрытие окна
function inc_close() {
	
	if (incWin != null && !incWin.closed) {
		incWin.close();
	}
}

var menu_back = new Image(); // для возврата изображений меню в невыделенное состояние
var ob_left_back = new Image();
var ob_right_back = new Image();


var menu_on = new Array();  // массив выделенных пунктов меню

menu_on[1] = new Image();
menu_on[1].src = "pct/menu1-on.gif";
menu_on[2] = new Image();
menu_on[2].src = "pct/menu2-on.gif";
menu_on[3] = new Image();
menu_on[3].src = "pct/menu3-on.gif";
menu_on[4] = new Image();
menu_on[4].src = "pct/menu4-on.gif";
menu_on[5] = new Image();
menu_on[5].src = "pct/menu5-on.gif";
menu_on[6] = new Image();
menu_on[6].src = "pct/menu6-on.gif";
menu_on[7] = new Image();
menu_on[7].src = "pct/menu7-on.gif";


var ob_left = new Array();  // массивы выделенных прокладок - левой части

ob_left[1] = new Image();
ob_left[1].src = "pct/ob1-l.gif";
ob_left[2] = new Image();
ob_left[2].src = "pct/ob2-l.gif";
ob_left[3] = new Image();
ob_left[3].src = "pct/ob3-l.gif";
ob_left[4] = new Image();
ob_left[4].src = "pct/ob4-l.gif";
ob_left[5] = new Image();
ob_left[5].src = "pct/ob5-l.gif";
ob_left[6] = new Image();
ob_left[6].src = "pct/ob6-l.gif";
ob_left[7] = new Image();
ob_left[7].src = "pct/ob7-l.gif";

var ob_right = new Array(); // правой ...

ob_right[0] = new Image();
ob_right[0].src = "pct/ob0-r.jpg";
ob_right[1] = new Image();
ob_right[1].src = "pct/ob1-r.gif";
ob_right[2] = new Image();
ob_right[2].src = "pct/ob2-r.gif";
ob_right[3] = new Image();
ob_right[3].src = "pct/ob3-r.gif";
ob_right[4] = new Image();
ob_right[4].src = "pct/ob4-r.gif";
ob_right[5] = new Image();
ob_right[5].src = "pct/ob5-r.gif";
ob_right[6] = new Image();
ob_right[6].src = "pct/ob6-r.gif";

function mn_select(pos) {

	ob_left_back.src = document.images['ob'+(pos-1)].src;
	menu_back.src = document.images['menu'+pos].src;
	ob_right_back.src = document.images['ob'+pos].src;

	document.images['ob'+(pos-1)].src = ob_right[pos-1].src;
	document.images['menu'+pos].src = menu_on[pos].src;
	document.images['ob'+(pos)].src = ob_left[pos].src;
}

function mn_deselect(pos) {

	document.images['ob'+(pos-1)].src = ob_left_back.src;
	document.images['menu'+pos].src = menu_back.src;
	document.images['ob'+pos].src = ob_right_back.src;
}


