function xlbShowStatus (sStatus)
{
	if (sStatus != "")
		self.status = sStatus;
	return true;
}

function xlbClearStatus ()
{
	self.status = "";
	return true;
}

function xlbSwapImage (sTarget, sImgLinks, sStatus)
{
	var t  = document.all[sTarget];
	t.oSrc = t.src;
	t.src  = sImgLinks;
	xlbShowStatus(sStatus);
	return true;
}

function xlbRestoreImage (sTarget)
{
	var t = document.all[sTarget];
	t.src = t.oSrc;
	xlbClearStatus();
	return true;
}

function xlbOpenWin (sUrl, sHeight, sWidth)
{
	var sWindowFeatures = "height=" + sHeight + " width=" + sWidth + " menubar='no' status='no' toolbar='no'";
	window.open(sUrl, "", sWindowFeatures);
	return true;
}