function Cover(id, width, height) {
	wndCover = window.open("", "cover", "width="+width+",height="+height);
	docCover = wndCover.window.document;
	docCover.writeln("<html>");
	docCover.writeln("<title>Обложка</title>");
	docCover.writeln("<body bgColor=#ffffff leftmargin=0 topmargin=0 rightmargin=0 bottommargin=0>");
	docCover.writeln("<img src=\"/images/magazine/issues/"+id+"b.jpg\" width="+width+" height="+height+">");
	docCover.writeln("</body>");
	docCover.writeln("</html>");
}

function ImgOver( obj, lang ) {
	obj.src = "/img/"+lang+"/but"+obj.name+"Over.gif";
}

function ImgOut( obj, lang ) {
	obj.src = "/img/"+lang+"/but"+obj.name+".gif";
}

function SetFont(id) {
	location.href = "/setfont.php?font="+id+"&href="+location.href;
}

function GQ_go(obj){
	href=obj.options[obj.selectedIndex].value;

	if(href!=0){
		//alert(href);
		document.location=href;
	}
}

function clearInput(obj){
//	alert("DSA");
	if(obj.value=='Что я ищу...'){
		obj.value="";
	}
}

function confirmSearch(){
	if(document.all.keywords_text.value=='Что я ищу...'){
		document.all.keywords_text.value='';
	}
	
	if(document.all.keywords_text.value==''){
		alert("Вы ничего не ввели в строку поиска!!!");
		window.event.returnValue=false;
		return false;
	}
}