// Rev. 09/07/2003
var awin = null; // The art window

function Toggle(item) {

   	obj = document.getElementById(item);
//   	visible = ();
   	if (obj.style.display != "none") {
		obj.style.display = "none";
		Collapse(item);
   	} 
   	else {
      	obj.style.display = "block";
		Expand(item);
   	}
}

function Expand(item) {
   divs = document.getElementById("x" + item);

   divs.innerHTML="<img src='http://www.icar.co.uk/pics/treeclose.gif' class='menuglyph'/>";
   
}

function Collapse(item) {
   divs = document.getElementById("x" + item);
   divs.innerHTML="<img src='http://www.icar.co.uk/pics/treeopen.gif' class='menuglyph'/>";
 
}

function artwin (w,h,img,text){
  if (awin && awin.open) { awin.close();}
  awin = window.open("", "newwin", "height="+h+", width="+w+",toolbar=no,scrollbars=no,menubar=no");
  awin.document.write("<html><head><title> Icar - "+text+"</title></head>");
  awin.document.write("<body style='margin:0px; padding:0px; background-color:#000033; background-image:url(../pics/loading.gif); background-attachment:fixed; background-position:center center; background-repeat:no-repeat;'  onClick='window.close();'>");
  
  awin.document.write("<table style='background-image:url("+img+");' width=100% height=100% cellpadding=0 cellspacing=0 border=0><tr><Td></td></tr><tr height=12><Td style='background-color:#343567; color:#AFACE8; border: solid 1px #555489; font-family:verdana; font-size:7pt;'>"+text+"</td></tr></table>");
  awin.document.write("</body></html>");
  awin.document.close();
}
