function popFullImage(ImgName,ImgWidth,ImgHeight)
{
   var winWidth = parseInt(ImgWidth + 4)
   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>");
}

function popFullFlash(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\"><object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0\" width=\"" + ImgWidth + "\" height=\"" + ImgHeight + "\">");
   popWindow.document.writeln("<param name=\"movie\" value=\"" + ImgName + "\">");
   popWindow.document.writeln("<param name=\"movie\" value=\"birdie.swf\">");
   popWindow.document.writeln("<embed src=\"" + ImgName + "\" quality=\"high\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" type=\"application/x-shockwave-flash\" width=\"" + ImgWidth + "\" height=\"" + ImgHeight + "\"></embed></object>");
   popWindow.document.writeln("</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>");
}