function send_query(){
	document.getElementById('search').submit();
}
function CreateBookmarkLink(url,title) {
	if (window.sidebar) { // Mozilla Firefox Bookmark
		window.sidebar.addPanel(title, url,"");
	} else if( window.external ) { // IE Favorite
		window.external.AddFavorite( url, title); }
	else if(window.opera && window.print) { // Opera Hotlist
		return true; }
}
/*function changeShop(id,total){
   clearTimeout(mytime);
   if(document.getElementById('shop_1')!=null){
   for(var i=1;i<=total;i++){
		document.getElementById('shop_'+i).style.display='none';
		document.getElementById('shop_ch_'+i).style.textDecoration='none';
	}
	document.getElementById('shop_'+id).style.display='block';
	document.getElementById('shop_ch_'+id).style.textDecoration='underline';
	
   mytime=window.setTimeout("changeShop2("+id+","+total+")",10000);
   }
}
function changeShop2(id,total) {
   if(document.getElementById('shop_1')!=null){
   for(var i=1;i<=total;i++){
		document.getElementById('shop_'+i).style.display='none';
		document.getElementById('shop_ch_'+i).style.textDecoration='none';
	}
	document.getElementById('shop_'+id).style.display='block';
	document.getElementById('shop_ch_'+id).style.textDecoration='underline';
	
   if(id>=total)id=0;
   id=id+1;

   mytime = window.setTimeout("changeShop2("+id+","+total+")",10000);
   }
}
window.onload = function(){changeShop2(1,4);}*/
