var CONTENT = function ( ) {
	}
CONTENT.prototype.printContent = function ( obj_id , bokm_id , prefix , module_name ) {
	var str = 'testEncode=����';
	if( obj_id != '' && obj_id != undefined ) str += '&obj_id=' + obj_id; 
	if( bokm_id != '' && bokm_id != undefined ) str += '&bokm_id=' + bokm_id; 
	if( prefix != '' && prefix != undefined ) str += '&prefix=' + prefix; 
	if( module_name != '' && module_name != undefined ) str += '&module_name=' + module_name; 

	//if( this.withMove ) {
	$el = $("#" + prefix + "_content");
	if( $el ) {
		$el.fadeTo("fast", 0.2, function() {
			$.ajax({
				async: true ,
				url: "/klarnetCMS/site/tabs/for_tabsNavi.php?" + str,
				dataType: 'html' ,
				cache: false , 
				success: function(html){
					$el.html(html);
					$el.fadeTo("fast", 1);
					}
				});
			}
		
		
		);
		//$( "#" + prefix + "_content" ).load( "/klarnetCMS/site/tabs/for_tabsNavi.php?" + str );
		
		
		return true;	
		}
	else {
		return false;
		}
	
	//	}
	//else {
	//	var tmp_content_container = getElement( prefix + "_content" );
		//alert ( str );
		//if( !tmp_content_container ) return false;
		//result = SERVER_OBJ.loadFragmentInToElement( "/klarnetCMS/site/tabs/for_tabsNavi.php?" + str , tmp_content_container , "<small class=gray>Loading...</small>" );
		//return result;
		//}
	}