	function open_pic(pic_src, pic_width, pic_height) {
		ff = window.open('about:blank','_blank','width='+pic_width+', height='+pic_height+', menubar=0,statusbar=0,scrollbar=auto,titlebar=0,toolbar=0,fullscreen=1');
		ff.document.write('<html><body leftmargin="0" rightmargin="0" bottommargin="0" topmargin="0"><img src="'+pic_src+'" alt="" border="0" onclick="window.close();"></body></html>');
		ff.document.close();
		ff.focus();
	}
	
	function search_submit() {
		var obj = document.getElementById('search_q_tmp');
		var obj1 = document.getElementById('search_q');
		if (obj  && obj1) {
			obj1.value = obj.value;
			obj.value = "";
			return true;
		}
		return false;
	}

