﻿// JScript File
 function Enlarge(CurrentImage,name,height,width)
{
    var H = parseInt(height,null)  + 20
    var W = parseInt(width,null)  + 20 
    var dispWin=window.open("","NewWin","toolbar=no,status=no,scrollbars=no,directories=no,location=no,menubar=no,height=" + H + ",width=" + W + "");
    dispWin.focus();
    dispWin.document.write("<html><head><title>"+name+"</title></head>");
    dispWin.document.write("<body><img src='Images/B"+CurrentImage+"' style='height:"+height+"px; width:"+width+"px;margin:0 auto;' alt='"+name+"'></body></html>");
}

