var PopUpWin=""; function WinPopUp(url,qstr,h,w,t,l,windowname) { //Kazoo Software Inc., Copyright 2001,2002 //create window to hold report pages, version allows creation of unique windows if(windowname==''){windowname = 'PopUpWin';} //popup height if(h==''|h<=0|h>=screen.height){h=screen.height-100;} //popup width if(w==''|w<=0|w>=screen.width){w=screen.width-50;} //popup top position if(t==''|t<0|t>=screen.height){t=20;}else{t=t+20;} //popup left position if(l==''|l<0|l>=screen.width){l=20;}else{l=l+20;} var dims = "height=" + h + ",width=" + w + ",top=" + t + ",left=" + l; var options = dims + ",toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=no"; //pop it PopUpWin = window.open(url + qstr,windowname,options); }