var CONTENT_FOR_GALLERY = function () {
	}
CONTENT_FOR_GALLERY.prototype.printContent = function ( photo_id , gallery_prefix, dop_link ) {
	//return false;
	var str = 'testEncode=тест';
	if( photo_id != '' && photo_id != undefined ) str += '&photo_id=' + photo_id; 
	if( gallery_prefix != '' && gallery_prefix != undefined ) str += "&gallery_prefix=" + gallery_prefix;
	else return false;
	
	if( dop_link != '' && photo_id != undefined ) str += '&' + dop_link; 
	var tmp_content_container = getElement( "gallery_content" );
	if( !tmp_content_container ) return false;
	result = SERVER_OBJ.loadFragmentInToElement( "/klarnetCMS/site/gallery/printContentForJS.php?" + str , tmp_content_container , "empty" );
	return result;
	}
var CONTENT_FOR_GALLERY_OBJ = new CONTENT_FOR_GALLERY();