// JavaScript Document

/* this function provides dynamic loading of the preview images of heliports within the operator texts */
function getBaseImg(imgWrapper,img,imgPath,altText)
{
	imgWrapper.style.display = 'block';
	img.src = imgPath;
	img.alt = altText;
}
