	function CheckSearchLength() {
		if(document.search.keyword.value.length > 3) 
			return true;
		else 
			alert('Строка поиска должна быть длиннее 3х символов :)');
		return false;
	}
	
	function popup(url, width, height) {
		
		if(screen != null && screen.width > 100 && screen.height > 100) {
			if(width > screen.width - 30)
				width = screen.width - 30;
			
			if(height > screen.height - 30)
				height = screen.height - 30;
		}
		
		var win = window.open('', '', 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=yes,resizable=yes,screenX=0,screenY=0,top=0,left=0,width='+width+',height='+height);
		win.document.open();
		win.document.write('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><html><title>Фаргус :: Галерея</title></title><body bgcolor="#D6D6D6" text="#000000" link="#000000" vlink="#000000" alink="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">');
		win.document.write('<img src="'+url+'">');
		win.document.write('</body></html>');
		win.document.close();
	}

	function popup_download(url) {
		window.open(url, '', 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=no,resizable=yes,screenX=0,screenY=0,top=0,left=0,width=300,height=100');
	}
	
	function show_image(url, width, height) {
		
		width = (width < 650) ? 650 : width + 50;
		height += 100;
		
		if(screen != null && screen.width > 100 && screen.height > 100) {
			if(width > screen.width)
				width = screen.width - 30;
			
			if(height > screen.height)
				height = screen.height - 30;
		}
		
		var win = window.open('/_Scripts/show_image.php?url='+url, 'gallery', 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=yes,resizable=yes,screenX=0,screenY=0,top=0,left=0,width='+width+',height='+height);
	}

	function show_flash(element_id, width, height) {
		
		width = (width < 650) ? 650 : width + 30;
		height += 100;
		
		if(screen != null && screen.width > 100 && screen.height > 100) {
			if(width > screen.width)
				width = screen.width - 30;
			
			if(height > screen.height)
				height = screen.height - 30;
		}
		
		var win = window.open('/_Scripts/show_flash.php?element_id='+element_id, 'gallery', 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=yes,resizable=yes,screenX=0,screenY=0,top=0,left=0,width='+width+',height='+height);
	}

	function iconover(name) {
		document.images[name].src = '/_Images/icons/a_'+name+'.jpg';
	}
	function iconout(name) {
		document.images[name].src = '/_Images/icons/'+name+'.jpg';
	}
