function fOpenDiv( strDiv ) {
	
	$( strDiv ).style.display = ( $( strDiv ).style.display=="none" ? "" : "none" );
	
}