

var name = null;
function imageChange(name)
	{
		document.images[name].src = "../Images/Buttons/" + name + "White.gif";
	}
function resetChange(name)
	{
		document.images[name].src = "../Images/Buttons/" + name + "Grey.gif";
	}

var crip = null;
function ShowFile(url)
{
	if((crip == null) || (crip.closed)) 
	{
		aURL = "ShowFile.aspx?aRID=" + url;
		crip = window.open(aURL, 'popupwindow', 'toolbar=yes,directories=no,status=yes,location=no,menubar=no,scrollbars=yes,width=500,height=300,left=20,top=20,resizable=no');
		crip.focus();
	}
	else
	{
		crip.location = aURL;
		crip.focus();
	}
}

function setBackgroundImage (id, imageURL) {
  if (document.layers)
    document[id].background.src = imageURL == 'none' ? null : imageURL;
  else if (document.all)
    document.all[id].style.backgroundImage = imageURL == 'none' ? 'none' 
: 'url(' + imageURL + ')';
  else if (document.getElementById)
    document.getElementById(id).style.backgroundImage = imageURL == 
'none' ? 'none' : 'url(' + imageURL + ')';
}
