function topSwapOn(nbr){
	var img = document.getElementById("topimage" + nbr);
	img.src="/images/layout/icons/LockImage_over.jpg";
	var text = document.getElementById("toptext" + nbr);
	text.style.fontWeight = "bold";
	text.style.color = "#FF9900";
}

function topSwapOff(nbr){
	var img = document.getElementById("topimage" + nbr);
	img.src="/images/layout/icons/LockImage_out.jpg";
	var text = document.getElementById("toptext" + nbr);
	//text.style.fontWeight = "normal";
	text.style.color = "#0000ff";
}

function swap(where, what){
	where.src = what;
}

function popWin(location){
		var width = screen.width / 2;
		var height = screen.height / 2;
		var x = width / 2;
		var y = height / 2;
		var opt = "height=" + height + ", width=" + width + ", screenX=" + x + ", screenY=" + y + ", scrollbars=yes";
		var helper = window.open(location, 'other', opt);
		helper.focus();
}
