var win=null;function NewWindow(F,D,B,C,A,E){if(E=="random"){LeftPosition=(screen.width)?Math.floor(Math.random()*(screen.width-B)):100;TopPosition=(screen.height)?Math.floor(Math.random()*((screen.height-C)-75)):100}if(E=="center"){LeftPosition=(screen.width)?(screen.width-B)/2:100;TopPosition=(screen.height)?(screen.height-C)/2:100}else{if((E!="center"&&E!="random")||E==null){LeftPosition=0;TopPosition=20}}settings="width="+B+",height="+C+",top="+TopPosition+",left="+LeftPosition+",scrollbars="+A+",location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no";win=window.open(F,D,settings).focus()};