/* Function to handle Window Popups */ function popup(content,popName,popWidth,popHeight,popLeftLoc,popTopLoc) { var win = window.open(content,popName,'width='+popWidth+',height='+popHeight+',screenX='+popLeftLoc+',screenY='+popTopLoc+',left='+popLeftLoc+',top='+popTopLoc+',toolbar=no,menubar=no,directories=no,location=no,status=no,scrollbars=yes,resizable=yes'); win.focus(); }