// JavaScript Document
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>");
	}