function change_status_top(num) {
	if (num==2) {
		//document.getElementById('top_title_basket').className = 'top_title_active';
		//document.getElementById('top_title_authorization').className = 'top_title_unactive';
		document.getElementById('top_body_basket').style.display = 'block';
		document.getElementById('top_body_authorization').style.display = 'none';
	}
	if (num==1) {
		//document.getElementById('top_title_basket').className = 'top_title_unactive';
		//document.getElementById('top_title_authorization').className = 'top_title_active';
		document.getElementById('top_body_basket').style.display = 'none';
		document.getElementById('top_body_authorization').style.display = 'block';
	}	
}
function send(){
	document.forms.auth.submit();
}
function send_search(){
	document.forms.search_block_form.submit();
}
function showhide(parid){
	var x,y;
	x=document.getElementById(parid).style;
	if (x.display=='none') {x.display='block';} else {x.display='none';}
}
function search_to_url( form_id, param_id ){
	var f = document.getElementById( form_id );
	var p = document.getElementById( param_id );
	if( f != null && p != null ){
		if( p.value != '' ){
			//f.action += escape( p.value );
			f.action += p.value;
			document.location.href = f.action;
			//return true;
		}else{
			alert( 'Строка поиска пуста!' );
		}
	}
	return false;
}
