function popFullImage(ImgName,ImgWidth,ImgHeight)
{
   var winWidth = parseInt(ImgWidth + 2)
   var winHeight = parseInt(ImgHeight) + parseInt(90)
   var popWindow = window.open("","Package","width=" + winWidth + ",height=" + winHeight + ",left=130,top=50,resizable");
   
   popWindow.document.writeln("<html><head><title>Product Image</title></head>");
   popWindow.document.writeln("<body topmargin=0 leftmargin=0 marginwidth=0 marginheight=0>");
   popWindow.document.writeln("<center><table border=0 cellpadding=0 cellspacing=0>");
   popWindow.document.writeln("<tr><td colspan=\"2\" class=\"BODY_FONT\"><b><u><img style=\"border:solid 5px #ffffff;\" src=\"" + ImgName + "\" width=\"" + ImgWidth + "\" height=\"" + ImgHeight + "\" border=\"0\"></u></b></td></tr>");
   popWindow.document.writeln("<tr><td colspan=\"2\" align=\"center\"><br><input type=\"button\" name=\"Task\" value=\"Close\" onClick=\"window.close()\"></td></tr>");
   popWindow.document.writeln("</table></center>");
   popWindow.document.writeln("</body></html>");
}   