function openPicWindow(photoPath)
{
  myWidth = 500;
	myHeight = 500;
	Xposs = (screen.width  - myWidth) / 2;
	Yposs = (screen.height - myHeight) / 2;
  win = window.open(photoPath,'PicWindow','menubar=0,location=no,directories=no,scrollbars=no,resizable=no,status=no,top=' + Yposs + ',left=' + Xposs + ', width=612, height=415');
}


function openPicInfoCentrum(photoPath)
{
  myWidth = 660;
	myHeight = 550;
	Xposs = (screen.width  - myWidth) / 2;
	Yposs = (screen.height - myHeight) / 2;
  win = window.open(photoPath,'PicWindowInfoCentrum','menubar=0,addressbar=no, location=no,directories=no,scrollbars=no,resizable=no,status=no,top=' + Yposs + ',left=' + Xposs + ', width=660, height=440');
}

function openDivInfo(name){
  if (name.style.display =='inline') {name.style.display = 'none';}  
  else {name.style.display ='inline';}
}

