function ViewLargeImg(imgsrc, winwd, winhg) {
w1=window.open('','w1','width='+winwd+',height='+winhg+',status=no,toolbar=no,menubar=no,location=no,resizable=yes,scrollbars=no');
w1.document.open();
w1.document.write("<html><head><title>Larger Image<\/title><META HTTP-EQUIV=\"Pragma\" CONTENT=\"no-cache\"><META HTTP-EQUIV=\"Expires\" CONTENT=\"-1\"><\/head>");
w1.document.write("<body bgcolor='#FFFFFF' text='#000000' leftmargin=2 topmargin=10><p align=center>");
w1.document.write("<img src=" + imgsrc + "><br>");
w1.document.write("<a href=\"javascript:window.close();\"><font size=1 face=tahoma color=#000000>Close Window<\/font><\/a><\/body><\/html>");
w1.document.focus();
};