<!-- hide
function toggle(target)
{
	obj=document.getElementById(target);
	obj.style.display=( (obj.style.display=='none') ? '' : 'none');
}
     
function sopen(target)
{
	obj=document.getElementById(target);
	obj.style.display='block';
}

function sclose(target)
{
	 obj=document.getElementById(target);
	 obj.style.display='none';
}
function showhide(obj) {
if (!document.all&&document.getElementById){document.all = document.getElementsByTagName("*")}
ns4 = (document.layers)? true:false;
ie4 = (document.all)? true:false;
objArray = obj.split(",");
if (ns4){skjul="hide";vis="show"}else{skjul="hidden";vis="visible"}
for (var i = 0; i < objArray.length; ++i){
	if (ns4)flipObj = document.layers[objArray[i]];
	if (ie4)flipObj = document.all[objArray[i]].style;
	flipObj.visibility==skjul? flipObj.visibility=vis:flipObj.visibility=skjul;
	}
}

function change(thistag) {
   styleObj=document.getElementById(thistag).style;
   styleObj.color="black";
}

function back(thistag) {
   styleObj=document.getElementById(thistag).style;
   styleObj.color="white";
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function wopen(url, name, w, h)
{
  // Fudge factors for window decoration space.
  // In my tests these work well on all platforms & browsers.
  w += 32;
  h += 96;
  wleft = (screen.width - w) / 2;
  wtop = (screen.height - h) / 2;
  var win = window.open(url,
    name,
    'width=' + w + ', height=' + h + ', ' +
    'left=' + wleft + ', top=' + wtop + ', ' +
    'location=no, menubar=no, ' +
    'status=no, toolbar=no, scrollbars=no, resizable=no');
  // Just in case width and height are ignored
  win.resizeTo(w, h);
  // Just in case left and top are ignored
  win.moveTo(wleft, wtop);
  win.focus();
}

function wopenscroll(url, name, w, h)
{
  // Fudge factors for window decoration space.
  // In my tests these work well on all platforms & browsers.
  w += 32;
  h += 96;
  wleft = (screen.width - w) / 2;
  wtop = (screen.height - h) / 2;
  var win = window.open(url,
    name,
    'width=' + w + ', height=' + h + ', ' +
    'left=' + wleft + ', top=' + wtop + ', ' +
    'location=no, menubar=no, ' +
    'status=no, toolbar=no, scrollbars=yes, resizable=no');
  // Just in case width and height are ignored
  win.resizeTo(w, h);
  // Just in case left and top are ignored
  win.moveTo(wleft, wtop);
  win.focus();
}

-->
