// JavaScript Documentvar popUpWin=0;
var popUpWin=0;
var img = null
function popUpWindow(imgsrc)

{
 
 img = imgsrc;
  if(popUpWin)

  {

    if(!popUpWin.closed) popUpWin.close();

  }

  popUpWin = open('./pictureviewer.html', 'popUpWin', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=yes,width=600,height=600,left=100, top=100,screenX=100,screenY=100');


}//function popUpWindow( img)

var popUpWinLandscape=0;
var img = null
function popUpWindowLandscape(imgsrc)

{
 
 img = imgsrc;
  if(popUpWinLandscape)

  {

    if(!popUpWinLandscape.closed) popUpWinLandscape.close();

  }

  popUpWinLandscape = open('./pictureviewer.html', 'popUpWin', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=yes,width=600,height=400,left=100, top=100,screenX=100,screenY=100');


}

var popUpWinPortrait=0;
var img = null
function popUpWindowPortrait(imgsrc)

{
 
 img = imgsrc;
  if(popUpWinPortrait)

  {

    if(!popUpWinPortrait.closed) popUpWinPortrait.close();

  }

  popUpWinPortrait = open('./pictureviewer.html', 'popUpWin', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=yes,width=400,height=600,left=100, top=100,screenX=100,screenY=100');


}


