// JavaScript Document
function generalWindow(imagepath,hh,ww) {
    winSpecs = "width=" + ww + ",height=" + hh + ",resizable=no,status=no,scrollbars=yes,toolbar=no";
    newWindow = window.open(imagepath, "newWin", winSpecs);
    newWindow.focus();
   } 
