var closeMenu = "dv0";
var closeTime;

function showMenu (id,aEvent) {
	var myEvent = aEvent ? aEvent : window.event;
	clearTimeout (closeTime);
	hideMenuOn ();
	closeMenu = id;
	doc = document.getElementById(id).style;
	doc.visibility = "visible";
	doc.left = myEvent.clientX + 5 + document.body.scrollLeft ;
	doc.top = myEvent.clientY + 5 + document.body.scrollTop;
}

function hideMenuOn () {
	doc = document.getElementById(closeMenu).style;
	doc.visibility="hidden";
}

function hideMenu () {
	closeTime = setTimeout ('hideMenuOn()', 500);
}

function tblResize() {
	nHeight = document.body.clientHeight - 280;
	if (nHeight < 510) nHeight=510;
	document.getElementById("tblBot").style.height = nHeight;;
}

function bigImage(obj,nmb) {
	if (obj.src.search("s.gif") != -1) {
		obj.src="/pictures/map" +nmb+".gif";
	} else {
		obj.src="/pictures/map" +nmb+"s.gif";
	};
}

function new_win(isrc){
mwin=window.open('','new_window','width=300,height=300,scrolling=no,resizable=no,top=30,left=15');
mwin.document.open();
mwin.document.write("<html><title>Креатив</title><meta HTTP-EQUIV='Content-Type' content='text/html; charset=windows-1251'><body style='margin:0px;padding:0px;'>");
mwin.document.write("<a href='#' onclick='window.close(); return false'><img src="+isrc+" border=0 onload='window.resizeTo(this.width+10,this.height+35)' alt='Закрыть окно'></a></body></html>");
mwin.onload=mwin.focus;
mwin.focus();
}