Ext.onReady(function(){
	if (Ext.get('quicksearch')){
		Ext.get('quicksearch').on('keypress',function(e){if (e.getKey()==Ext.EventObject.ENTER) findQuick();});
	}
});

function openSiteMap(){
	window.open('/index.php?s=sitemap','sitemap','location=no,status=yes,scrollbars=yes,resizable=yes,width=930,height=525');
	return false;
}

/**
 * Запускает быстрый поиск.
 * 
 * @param chto Что ищем
 */
function findQuick(enter){
	var chto=Ext.getDom('quicksearch').value;
	location.href="/index.php?s=quicksearch#"+chto;
}
