// JavaScript Document<script type="text/javascript">
function popUpWindow(url,title)
{
  var nwl = (screen.width-550)/2;
  var nwh = (screen.height-350)/2;
  popUp=window.open(url, title, 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=500,height=500,left='+nwl+',top='+nwh+''); 
  popUp.window.focus(); 
}

function popUpWindowSmall(url,title)
{
  var nwl = (screen.width-550)/2;
  var nwh = (screen.height-350)/2;
  popUp=window.open(url, title, 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=350,height=300,left='+nwl+',top='+nwh+''); 
  popUp.window.focus(); 
}

function popUpWindowPictures(url,title)
{
  var nwl = (screen.width-550)/2;
  var nwh = (screen.height-350)/2;
  popUp=window.open(url, title, 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=1000,height=600,left='+nwl+',top='+nwh+''); 
  popUp.window.focus(); 
}

function popUpWindowFlashgallery(url,title)
{
  var nwl = (screen.width-550)/2;
  var nwh = (screen.height-350)/2;
  popUp=window.open(url, title, 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=980,height=530,left='+nwl+',top='+nwh+''); 
  popUp.window.focus(); 
}

