function chkselect(){
var chkcount=0;
for(i=0;i<document.all.lawcategory.length;i++){
	if(document.all.lawcategory[i].checked){
	chkcount++;
	if(chkcount>10){
	break;
	}
	}
}
if(chkcount>10){
	alert("您最多能选择10项业务范围！");
	return false;
}
else{
	return true;
}
}
	
function ShowError(object,Message)
{
	document.getElementById(object).innerHTML = "<table width=\"100%\" border=\"0\" cellpadding=\"1\" cellspacing=\"0\" class=ErrorStyle><tr><td width=\"20\" valign=top><img src=\"images/alert.gif\"></td><td>"+Message+"</td></tr></table>";
}

function OpenWin(FileName,WinName,width,height)
{
	window.open(FileName,WinName,"top=100,left=100,width="+width+",height="+height+",scrollbars=yes");
}

function GotoUrl(url)
{
	document.iframe_Main.location.href=url;
}
