/* Author: Eric King - http://redrival.com/eak/index.shtml (http://www.dynamicdrive.com) */
var win=null;
function NewWindow(_1,_2,w,h,_5,_6){
if(_6=="center"){
LeftPosition=(screen.width)?(screen.width-w)/2:100;
TopPosition=(screen.height)?(screen.height-h)/2:100;
}else{
if((_6!="center")||_6==null){
LeftPosition=0;
TopPosition=20;
}
}
settings="width="+w+",height="+h+",top="+TopPosition+",left="+LeftPosition+",scrollbars="+_5+",location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=yes";
win=window.open(_1,_2,settings);
}

