var login = {
	show : function(){
				if(dojo.isIE){
					dojo.query("#indexMenuBc").style({zIndex: "-1"});
				}
				$.prompt($("#authBox").html(),{ 
					buttons:{},
					callback: function(v,m){
						if(dojo.isIE)dojo.query("#indexMenuBc").style({zIndex: "0"});		
					}
				});
	}

}

var register = {
	show : function(){
				if(dojo.isIE){
					dojo.query("#indexMenuBc").style({zIndex: "-1"});
				}
				var content = $("#registerForm").html();
				$("#registerForm").html("");
				$.prompt(content,{ 
					buttons:{},
					callback: function(v,m){
						$("#registerForm").html(content);
						if(dojo.isIE)dojo.query("#indexMenuBc").style({zIndex: "0"});	
					}
				});
	}

}



function showSearch() {
				var content = '<form method="get" action="/search/"><DIV class="center">Поиск:<A style="margin:0 0 0 240px;" class="x" onclick="$('+"'.jqiclose'"+').click();" href="javascript:void(0)"><IMG alt="x" src="/pic/x.gif" border="0"></A> <DIV class="centerbody"><DIV class="centercolonleft" style="width:115px;">Ключевое слово: </DIV><DIV class="centercolonright"><INPUT class="inputtext" name="q" style="width:155px;"> </DIV><DIV class="clear"></DIV><DIV class="centercolonleft">&nbsp; </DIV><DIV class="centercolonright">&nbsp;&nbsp;&nbsp;<INPUT style="margin-left:82px; _margin-left:70px;" class="button" type="submit" value="Искать"> </DIV></DIV></DIV></form>';
				$.prompt(content,{ 
					buttons:{},
					callback: function(v,m){
					}
				});
}