function newWinJohnRoutledge() {
TheNewWinJohnRoutledge =window.open("johnroutledgeprofile.html",'JohnRoutledgeWindow','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=526,height=460,top=100,left=100');

TheNewWinJohnRoutledge.focus();
}


//*** Code to make window open underneath other windows***
function goNewWin() {
//***Get what is below onto one line***
TheNewWin =window.open("popunderexample.html",'TheNewpop','toolbar=1,location=1,directories=1,status=1,menubar=1,scrollbars=1,resizable=1'); 
//***Get what is above onto one line*** 

TheNewWin.blur();
}