	jsHover = function() {
		var hEls = document.getElementById("nav").getElementsByTagName("LI");
		for (var i=0, len=hEls.length; i<len; i++) {
			hEls[i].onmouseover=function() { this.className+=" jshover"; }
			hEls[i].onmouseout=function() { this.className=this.className.replace(" jshover", ""); }
		}
	}
	if (window.attachEvent && navigator.userAgent.indexOf("Opera")==-1) window.attachEvent("onload", jsHover);

function openguest(name) {
    var window_width = 640;
  var window_height = 480;
    var window_left = (screen.availWidth / 2) - (window_width / 2)
    var window_top = (screen.availHeight / 2) - (window_height /2)
    var window_dimensions = "height=" + window_height +
                            ",width=" + window_width +
                            ",left=" + window_left +
                            ",top=" + window_top +
                            ",toolbar=0,menubar=0,statusbar=0,scrollbars=yes"
    var new_win = window.open( name , "Гостевая_книга", window_dimensions);
    new_win.focus()
}

