<!--
function checkAll( p_form ) {
	if( p_form.f_check_all ) {
		var c = p_form.f_check_all.checked;
	}//if
	for( var i = 0;i < p_form.elements.length;i++ ) {
		var e = p_form.elements[ i ];
		if( e.name != 'f_check_all' ) {
			if( ( e.checked != c ) && ( e.type == 'checkbox' ) ) {
				e.click();
				e.checked = c;
			}//if
		}//if
	}//for
}//checkAll
function s_fblock(){
	document.getElementById('fblock').style.display = "block";
}

function h_fblock(){
	document.getElementById('fblock_parent').style.display = "block";
	document.getElementById('fblock').style.display = "none";
}

-->