function goNewWin(testimonyName) {

// Set height and width
var NewWinHeight=550;
var NewWinWidth=500;

TheNewWin =window.open("testimonials.php"+testimonyName,'TheNewpop','fullscreen=no,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes'); 

TheNewWin.resizeTo(NewWinHeight,NewWinWidth);

}