function ShowHUGEimage ( photo_id , gallery_prefix, dop_link , el , frame_width , frame_height ) {
	if( iframe_el = getElement( el ) ) {				
		iframe_el.width = frame_width;
		iframe_el.height = frame_height;		
		iframe_el.src = adress_pr + "klarnetCMS/site/gallery/HUGEimagePopup.php?photo_id=" + photo_id + "&gallery_prefix=" + gallery_prefix + "&" + dop_link + "&type_action=js" + "&frame_name=" + el;
		WP_positioningCenter (iframe_el) ;
		iframe_el.style.visibility = "visible";
		return true;
		}
	return false;
	}

function hideHUGEimage ( el ) {
	if( iframe_el = getElement( el ) ) {
		iframe_el.style.visibility = "hidden";
		iframe_el.src = adress_pr + "scripts/shablons_files/site/simple_shablon_HUGE_image.htm";
		}
	}