function openWindow($file) 
{
   var newWin = window.open($file,'_blank','location,resizable,scrollbars,width=800,height=700');
   newWin.focus();
}

function openWindow2() 
{
   var newWin = window.open('popup.php','_blank','location,width=640,height=620');
   newWin.focus();
}

function openWindow3($file)
{
   var newWin = window.open($file,'_blank','location');
   newWin.focus();
}

function show_artFair(id, lang)
{
  // jaa liek ../../../ jo fails no kura izsauc js... atrodas dzilji....
  
  hide_other_sub_menu('');
  $('#footer').fadeOut('slow');
  $('#subMenu').fadeOut('slow');
  //hideElement('contentDiv');
  
  if (ekrans=='galery')
  {
      $('#contentDiv').load('../../../artFair.php?id='+id+'&l='+lang, function ()
	      {
		$('#flashMaskImage').fadeIn('slow');});
      
      ekrans='art_fair';
  }
  else
  {
      $('#contentDiv').load('../../../../artFair.php?id='+id+'&l='+lang, function ()
	      {
		$('#flashMaskImage').fadeIn('slow');});
      ekrans='art_fair';
  }
}



function hide_artFair(id, lang)
{
  // jaa liek ../../../ jo fails no kura izsauc js... atrodas dzilji....
  
  hide_other_sub_menu('');
  $('#footer').fadeOut('slow');
  $('#subMenu').fadeOut('slow');
  //hideElement('contentDiv');
  
  if (ekrans=='galery')
  {
      $('#contentDiv').load('../../../blank.html', function ()
	      {
		$('#flashMaskImage').fadeIn('slow');});
      ekrans='art_fair';
  }
  else
  {
      $('#contentDiv').load('../../../../blank.html', function ()
	      {
		$('#flashMaskImage').fadeIn('slow');});
      ekrans='art_fair';
  }
}




function main_menu_on(id)
{
   //alert(id);
   //alert (ekrans + id);
   if (id!=ekrans)
   {
      document.getElementById(id).style.borderStyle="solid";
      document.getElementById(id).style.borderTopWidth="0px";
      document.getElementById(id).style.borderLeftWidth="0px";
      document.getElementById(id).style.borderRightWidth="0px";
      document.getElementById(id).style.borderBottomWidth="2px";   
   }
   
   
}
function main_menu_off(id)
{
   if (id!=ekrans)
   {
      document.getElementById(id).style.borderStyle="solid";
      document.getElementById(id).style.borderTopWidth="0px";
      document.getElementById(id).style.borderLeftWidth="0px";
      document.getElementById(id).style.borderRightWidth="0px";
      document.getElementById(id).style.borderBottomWidth="0px";
   }
}

function hideElement(id)
{
   $('#'+id).fadeOut(0);
}

function showElement(id)
{
   $('#'+id).fadeIn(0);
}

function showElementSlow(id)
{
   $('#'+id).fadeIn('slow');
}


