

	function PopWin(f, w, h, t){
		var fIE = (navigator.appVersion.indexOf('MSIE')>=0);
		if(!fIE) {
			h = h - 20;
		}
		var wo = window.open(f, t,"width=" + w + ",height=" + h);
		wo.resizeTo(w,h);
		wo.focus();
	}

	function SearchWin() {
		PopWin('/window.html', 340, 260, '_blank');
	}


