function popup(win,img,folder,w,h){
   var hw = "height=" + h + ",width=" + w;
   var pop = window.open("popup.htm", win, hw );
if (document.all){
pop.document.write('<HTML><HEAD><title>Preview</title></HEAD><BODY BGCOLOR=\"#ffffff\" marginwidth=\"0\" marginheight=\"0\" topmargin=\"0\" leftmargin=\"0\" scroll=\"no\"><IMG SRC=\"' + folder + '/' + img + '\" BORDER=\"0\"></BODY></HTML>');
pop.focus();
}
if (document.layers){
pop.document.open();
pop.document.write('<HTML><HEAD><title>Preview</title></HEAD><BODY BGCOLOR=\"#ffffff\" marginwidth=\"0\" marginheight=\"0\" topmargin=\"0\" leftmargin=\"0\"><IMG SRC=\"' + folder + '/' + img + '\" BORDER=\"0\"></BODY></HTML>');
pop.document.close();
pop.focus();
}
}
