function doExpandContract(theTarget)
{
	// Tar emot objektet och lägger till ett 'd' för att nå underliggande objekt
	theId = theTarget + "d";

	// Hämtar objektet med ovanstående id från sidan
	var targetElement = document.all(theId);

	// Om objektet är osynligt visas det och bilden sätts till ett minus, annars tvärt om.
	if (targetElement.style.display == "none")
	{
		targetElement.style.display = "" ;
		document.all(theTarget).src = "http://www.pocho.se/images/minus.gif" ;
	}
	else
	{
		targetElement.style.display = "none" ;
		document.all(theTarget).src = "http://www.pocho.se/images/plus.gif" ;
	}
}
function OpenBrWindow(theURL,winName,features, myWidth, myHeight, isCenter) 
{ //v3.0
  if(window.screen)if(isCenter)if(isCenter=="true")
  {
    var myLeft = (screen.width-myWidth)/2;
    var myTop = (screen.height-myHeight)/2;
    features+=(features!='')?',':'';
    features+=',left='+myLeft+',top='+myTop;
  }
  window.open(theURL,winName, features+((features!='')?',':'')+'width='+myWidth+',height='+myHeight);
}
