// JavaScript Document

function switch_hidden(newID)
{
	// opened_section is an external variable
	alert(opened_section);
	if( opened_section == newID )
	{		
      var element = document.getElementById(newID);
      if (element.style.display=="none") {
         element.style.display='';
      }
      else {
         element.style.display="none";
      };
	  return;
	}
	if(opened_section != undefined)
	{
		var	old_element = document.getElementById(opened_section);
	  	old_element.style.display=="none";
	}
    var element = document.getElementById(newID);
    element.style.display='';
	opened_section = newID;
}

function openBasketWindow(popup_url,windowName,features) 
{
  newWindow = window.open(popup_url,windowName,features);
  newWindow.focus();
}

function swapImage(img1,img2)
{
	var tmp = document.getElementById(img1).src;
	document.getElementById(img1).src = document.getElementById(img2).src;
	document.getElementById(img2).src = tmp;
}