<!--
var win=null;
function NewWindow(mypage,myname,w,h,scroll,pos){
if(pos=="random"){LeftPosition=(screen.width)?Math.floor(Math.random()*(screen.width-w)):100;TopPosition=(screen.height)?Math.floor(Math.random()*((screen.height-h)-75)):100;}
if(pos=="center"){LeftPosition=(screen.width)?(screen.width-w)/2:100;TopPosition=(screen.height)?(screen.height-h)/2:100;}
else if((pos!="center" && pos!="random") || pos==null){LeftPosition=0;TopPosition=20}
settings='width='+w+',height='+h+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no';
win=window.open(mypage,myname,settings);
if(win.focus){win.focus();}}
function CloseNewWin(){if(win!=null && win.open)win.close()}
//window.onfocus=CloseNewWin;

function reminder(){
NewWindow('reminder.php','Remind','500','330','no','center');
}

function security(){
NewWindow('secure.php','FAQ','500','330','no','center');
}

function faq(){
NewWindow('faq.php','FAQ','600','400','yes','center');
}

function faqsp(){
NewWindow('faq.php?lang=sp','FAQ','600','400','yes','center');
}

function friendmail(){
NewWindow('send2friend2.php','FAQ','600','470','yes','center');
}

function privacy(){
NewWindow('privacy.php','FAQ','600','250','yes','center');
}

function why(){
NewWindow('why.php','Why','600','400','yes','center');
}

function courts(){
NewWindow('approved.php','Courts','600','400','yes','center');
}

function courtssp(){
NewWindow('approved.php?lang=sp','Courts','600','400','yes','center');
}

function contact(){
NewWindow('contact.php','Courts','610','630','no','center');
}

function reviewchapters(){
NewWindow('chapterlisting.php','Chapters','580','500','auto','center');
}

function reviewchaptersp(){
NewWindow('chapterlisting.php','Chapters','580','540','auto','center');
}

function qreview(what){
NewWindow(what,'Review','740','400','yes','center');
}

function pop(what){
NewWindow(what,'Locations','480','480','yes','center');
}
// -->
