


function newWindow(newContent)
 {
  winContent = window.open(newContent, 'nextWin', 'right=0, top=20,width=300,height=275, toolbar=no,scrollbars=yes, resizable=no')         
 }





function newWindow2(newContent)
 {
  winContent = window.open(newContent, 'nextWin', 'right=0, top=20,width=620,height=600, toolbar=no,scrollbars=yes, resizable=no')         
 }

 


function newWindow3(newContent)
 {
var newishWindow = window.open(newContent, 'newWindow1', 'right=0, top=20,width=643,height=360, toolbar=no,scrollbars=no, resizable=no')         
 newishWindow.moveTo(100, -100);
 }
