 <!--
//参数：
//	url 链接地址
//	target 目标frame，其中
//		_top:表示主frame
//		_blank:新窗口
function openurl(surl,target){
	if (target=='_top'){
		parent.location=surl;
	}else if (target=='_blank'){
		var newwin = window.open('','_blank','toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,left=0,top=0,width=630,height=450');
		
		newwin.location=surl;
		newwin.focus();
	}else if (target=='_blank1'){
		var newwin = window.open('','_blank','scrollbars=1,resizable=0,left=0,top=0,width=630,height=560');
		newwin.location=surl;
		newwin.focus();
	}else{
		if (parent.frmaes != null){
			parent.frames(target).location=surl;
		}else{
			this.location=surl;
		}
	}
	return;
}
//-->
