function tL(whichLayer) {

var wl = 'en-' + whichLayer;

if (document.getElementById) {
// this is the way the standards work
var style2 = document.getElementById(wl).style;

if(style2.display != "none") 
		style2.display = "none"
	else 
		style2.display = "block";

}
else if (document.all) {
// this is the way old msie versions work
var style2 = document.all[wl].style;
style2.display = style2.display? "":"block";
}
else if (document.layers) {
// this is the way nn4 works
var style2 = document.layers[wl].style;
style2.display = style2.display? "":"block";
}

}


function expandEbay() {
var eb = document.getElementById("ebaylist");
var ec = document.getElementById("ebaycross");
var ee = document.getElementById("ebayextra");

if(ec.innerHTML == '-') {
eb.style.height = "60px";
ec.innerHTML = "+";
ee.style.display = "none";
}
 else {
ee.style.display = "block";
eb.style.height = "200px";
ec.innerHTML = "-";
}

}


