function changeImage(img) {
document.getElementById('popup').innerHTML="<img src=\""+ img +"\" id=\"mainimage\" border=\"0\" align=\"middle\" vspace=\"0\" >";
}

function ResizeToFit(dlg, picHeight, picWidth) {
 var imgWidth;
 var imgHeight;
 
 imgWidth = 560; 
 imgHeight = picHeight + 210;
 dlg.resizeTo(imgWidth, imgHeight);
}

function popupImage(img, name, width, height){

 features = 
    "toolbar=no,location=no,directories=no,status=no,menubar=no," +
    "scrollbars=no,resizable=no,width=" + width + ",height=" + height;
 dlg = window.open ("","Details",features);
 dlg.document.write("<html><head><title></title><link type=\"text/css\" rel=\"stylesheet\" href=\"http://yst.gfsportsworld.com/css/style.css\" /></head>");

 dlg.document.write("<body onLoad=\"javascript:opener.ResizeToFit(self, picImg.height, picImg.width);\"><center>");
 dlg.document.write("<table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"><tr><td class=\"enlarge-bg\"><table width=\"517\" border=\"0\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\"><tr><td><table width=\"517\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"><tr><td width=\"450\" ><div class=\"enlarge-logo\"><img src=\"http://yst.gfsportsworld.com/images/enlarge-view-logo.jpg\" alt=\"\" width=\"116\" height=\"95\" /></div></td><td align=\"right\" valign=\"middle\"><a href=\"javascript:window.close();\"><img src=\"http://yst.gfsportsworld.com/images/close-btn.jpg\" alt=\"\" width=\"60\" height=\"15\" /></a></td>      </tr></table></td></tr><tr><td height=\"20\" class=\"enlarge-black\">&nbsp;</td></tr><tr><td align=\"center\" valign=\"middle\" class=\"enlarge-img-border\"><img name=\"picImg\" src=" + img + " id=\"mainimage\"/></td></tr><tr><td height=\"32\" align=\"left\" valign=\"top\" class=\"enlarge-heading\">" + name + "</td></tr><tr><td height=\"20\" align=\"left\" valign=\"top\">&nbsp;</td>  </tr></table></td></tr></table></body></html>");


 dlg.document.close();
}