/** author  wanghui  version V2.00  date 2007/5/14 */
/*
 * 削除確認画面表示
 */
 function checkall(form_name) {
	var count = 0;

	for (i = 0; i < document.forms[form_name].elements.length; i++) {
		if (document.forms[form_name].elements[i].checked) {
			count++;
		}
	}
	if (count <= 0) {
		window.open("/sample/html/popup_err_select.html","","width=300,height=200,top=250,left=350,scrollbars=no,resizable=no,toolbar=no,status=no");
	}else{
		window.open("/sample/html/attribute_del.html","","width=370,height=200,top=250,left=350");
	}
}
function delconfirm(){
	parent.opener.document.forms[0].submit();
}