function CreateAtlasImage (sourceURL)
{
	var atlasImage = new Image();
	atlasImage.src = sourceURL;
	
	//var iFrameElement = document.createElement("iframe"); 
	//iFrameElement.style.display = "none";
	//iFrameElement.setAttribute("src", "http://switch.atdmt.com/action/" + value); 
}


function setLocationForZoomedImage(oImageHolder) {

    var left = 0;

    if (typeof (window.innerWidth) == 'undefined') {

        left = parseInt(document.body.clientWidth / 2) - parseInt(oImageHolder.firstChild.width / 2);
    }
    else {
        left = parseInt(window.innerWidth / 2) - parseInt(oImageHolder.firstChild.width / 2);
    }
    if (left < 0)
    { left = 0; }

    oImageHolder.style.left = left + "px";
}