﻿//===========================================================
//   For Image popup Only
//   @ hardcoded image path
//===========================================================
function display_PopupImage(parent,named, imagepath, type)  {
	 var popup_element = document.getElementById(named);
     //override the 'display:none;' style attribute
     popup_element.style.display = "";
     var placement = findPos(parent);    
    // hardcode the extra height value
     popup_element.style.left = (placement[0]-2) + "px";
     popup_element.style.top = (placement[1]-1) + "px";
    
     // to determine the image path from \Admin folder or root folder
     if (type == "admin") {
         imagepath = imagepath.replace('~','..');
     }
     else if (type == 'web') {
         imagepath = imagepath.replace('~/','')
     }
     
     popup_element.innerHTML = "<img src='" + imagepath + "' />";

    return true;
}

