function openImg(theURL,winName,theWidth,theHeight) {
    settings=
    "toolbar=no,location=no,directories=no,"+
    "status=no,menubar=no,scrollbars=no,"+
    "resizable=no,width="+theWidth+",height="+theHeight;
    newWin = window.open(theURL,winName,settings);
}
