// JavaScript Document
function goNewWin(picture, height, width ) {

// Set height and width
var NewWinHeight=height;
var NewWinWidth=width;

// Place the window
var NewWinPutX=50;
var NewWinPutY=105;

//Get what is below onto one line

TheNewWin =window.open(picture,'TheNewpop','fullscreen=no,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,alignment=center'); 

//Get what is above onto one line


TheNewWin.resizeTo(NewWinHeight,NewWinWidth);
TheNewWin.moveTo(NewWinPutX,NewWinPutY);
TheNewWin.focus()

}
