// 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=50;

//Get what is below onto one line

TheNewWin =window.open(picture,'TheNewpop','fullscreen=yes,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,alignment=absolute'); 

//Get what is above onto one line

TheNewWin.resizeTo(NewWinHeight,NewWinWidth);
TheNewWin.moveTo(NewWinPutX,NewWinPutY);

}

