function openImg(id,f,imgW,imgH) {

    var winWidth = eval(imgW)+20;
    var winHeight = eval(imgH)+30;

    var x = 0;
    var y = 0;
    x = (screen.availWidth - 12 - winWidth) / 2;
    y = (screen.availHeight - 48 - winHeight) / 2;

    var features = "screenX=" + x + ",screenY=" + y + ",width=" + winWidth +",height=" + winHeight+",top="+y+",left="+x+"'";


    copWindow = window.open("", "anab",features);
    copWindow.document.write("<html>\n<head><title>www.musichunter.it</title></head>\n");
    copWindow.document.write("<body>\n");
    copWindow.document.write("<a href='javascript:window.close();'>");
    copWindow.document.write("<img src='/"+f+"?id="+id+"' width='"+imgW+"' height='"+imgH+"' border='0' title='clicca per chiudere'></a>\n");
    copWindow.document.write("</body>\n</html>");
}
