IE4 = (document.all && parseInt(navigator.appVersion)<5)? true : false; 
IE5 = (document.all && parseInt(navigator.appVersion)>=5)? true : false; 
NN4 = (document.layers)? true : false;
NN5 = (navigator.appName == "Netscape" && parseInt(navigator.appVersion)>=5)? true : false;
OPERA = (navigator.appName == "Opera" && parseInt(navigator.appVersion)>=4)? true : false;

var doc = document;
doc.pictArr = new Array();
doc.pictArr[0] = new Image;
doc.pictArr[0].src = 'images/marker_menu.gif';
doc.pictArr[1] = new Image;
doc.pictArr[1].src = 'images/spacer.gif';

function showImg(obj) {
	var doc = document;
	if (doc.images) {
		document.images[obj].src = doc.pictArr[0].src;
	}
}

function hideImg(obj) {
	var doc = document;
	if (doc.images) {
		document.images[obj].src = doc.pictArr[1].src;
	}
}

function OpenWindow (url, width, height, x, y) {
/* Открывает страницу с адресом url в новом окне размером width x height в точке (x,y) */
	window.open(url, 'newindow', 'directories=0,location=0,menubar=0,resizable=1,scrollbars=1,status=1,toolbar=0,width='+width+',height='+height+',left='+x+',top='+y);
}