var vendorwin = null; function showVendor(vendorname) { if (vendorwin != null) vendorwin.close(); vendorwin = window.open("vendordetail.jsp?VENDORNAME="+vendorname,"VendorDetail","height=120,width=300,status=no,toolbar=no,menubar=no,left="+((screen.width/2)-150)+",top="+((screen.height/2)-120)+",titlebar=no,location=no"); } var problemwin = null; function showProblem(taskid) { if (problemwin!= null) problemwin.close(); problemwin= window.open("problemdetail.jsp?TASKID="+taskid,"ProblemDetail","height=120,width=300,status=no,toolbar=no,menubar=no,left="+((screen.width/2)-150)+",top="+((screen.height/2)-120)+",titlebar=no,location=no"); } var taskwin = null; function showTask(taskid) { if (taskwin!= null) taskwin.close(); taskwin= window.open("taskdetail.jsp?TASKID="+taskid,"TaskDetail","height=500,width=480,status=no,toolbar=no,menubar=no,left="+((screen.width/2)-250)+",top="+((screen.height/2)-240)+",titlebar=no,location=no"); }