<!--
function openWinMap(url)
{
  openWinSize(url,485,400);
}
function openWin(url)
{
  openWinSize(url,350,400);
}
function openWinBig(url)
{
  var w = window.open(url);
  w.focus();
}
function openWinSize(url,width,height)
{
  var w
  if (height > 600){
  	w = window.open(url, "popOff", "width="+width+",height="+height+",status=no,resizable=no,scrollbars=1");	
  }else 
  	w = window.open(url, "popOff", "width="+width+",height="+height+",status=no,resizable=no");
  w.focus();
}
function openWinSizeNonscrollable(url,width,height)
{
  var w = window.open(url, "popOffNonscrollable", "width="+width+",height="+height+",status=no,resizable=no");
  w.focus();
}
function openBigWin(name,url,width,height)
{
  var w = window.open(url, name, "width="+width+",height="+height+",status=no,resizable=no");
  w.focus();
}
function openYoutube(url)
{
  openWinSize(url,425,440);
}
//-->