var myWin = null;
function openWin(url, name, width, height, title) {
myWin=open("", name, ',width=' + width + ',height=' + height);
myWin.document.write("<html><head><title>enlarged image</title></head><body topmargin=0 leftmargin=0 scroll=no>");
myWin.document.write('<img src=' + url + ' alt="' + title + '"></body></html>');
myWin.document.close();  
}
