﻿// JScript File
function ShowImage(strImageURL, intHeight, intWidth, strTitle, strImageText)
    {
     
        var oWindow = window.radopen("/Home/Common/showImage.aspx?ImageURL=" + strImageURL + "&ImageText=" + strImageText, "DialogWindow");
    
        var intTop = (screen.height - intHeight) / 2;
        var intLeft = (screen.Width - intWidth) / 2;
               
        oWindow.SetSize (intHeight, intWidth);
        oWindow.MoveTo (intLeft-100, intTop); //Left:190
        oWindow.SetTitle (strTitle);
        
    }


