// JavaScript Document

		isDOM=document.getElementById //DOM1 browser (MSIE 5+, Netscape 6, Opera 5+)
		isOpera=isOpera5=window.opera && isDOM //Opera 5+
		isOpera6=isOpera && window.print //Opera 6+
		isOpera7=isOpera && document.readyState //Opera 7+
		isMSIE=document.all && document.all.item && !isOpera //Microsoft Internet Explorer 4+
		isMSIE5=isDOM && isMSIE //MSIE 5+
		isNetscape4=document.layers //Netscape 4.*
		isMozilla=isDOM && navigator.appName=="Netscape" //Mozilla или Netscape 6.*
		
		function IsOperaCheck (){
		
		
			if (isOpera7){
					document.getElementById('menu1').style.width='100%';
					document.getElementById('menu2').style.width='100%';
					document.getElementById('menu3').style.width='100%';
					document.getElementById('menu4').style.width='100%';
					document.getElementById('menu5').style.width='100%';
					document.getElementById('menu6').style.width='100%';
					}
		}
		function MSIEMenuPosition (){
			if (isMSIE){
				ww=document.body.scrollWidth;
							document.getElementById('menu1').style.left=0;
						document.getElementById('menu2').style.left=0;
						document.getElementById('menu3').style.left=0;
						document.getElementById('menu4').style.left=0;
						document.getElementById('menu5').style.left=0;
						document.getElementById('menu6').style.left=0;
					}
		}
		window.onresize=MSIEMenuPosition;	

function ChIm (ImgName,FileName){
	document.images[ImgName].src=FileName;
	}

function ShowMenu (menu){
	document.getElementById(menu).style.visibility='visible';
	}

function HideMenu (menu){
	document.getElementById(menu).style.visibility='hidden';
	}

function ChMsgColor (color){
	document. getElementById ('MsgColor').style.color=color;
	}
function SearchRules (){
	window.open ('/search_rules.html','rules','width=400, height=200');
	}

var msgWindow;
function windowOpener (obj,w,h) {
	if (msgWindow) {msgWindow.close()}
	msgWindow=window.open (obj,"displayWindow","width="+w+",height="+h+",screenX=50,screenY=50,left=50,top=50,toolbar=0,scrollbars=1,menubar=0,status=no,resizable=yes");
	}

var msgPicture;
function BigPic (obj,w,h) {
	if (msgPicture) {msgPicture.close()}
	msgPicture=window.open (obj,"displayPicture","width="+w+",height="+h+",screenX=50,screenY=50,left=50,top=50,toolbar=0,scrollbars=0,menubar=0,status=no,resizable=no");
	msgPicture.document.writeln ("<html><head><title>Увеличенная фотография</title></head><body leftmargin=0 marginheight=0 marginwidth=0 topmargin=0><a href=\"javascript:window.close()\" style=\"font-size: 9px;\"><img src=\"/files/"+obj+"\" width="+w+" height="+h+" border=0></a></center></body></html>");
	}
