// Preload Over and Down state images
Image1= new Image(10,12);
Image1.src = "images/aButtonBgDown.gif";
Image2= new Image(10,12);
Image2.src = "images/aButtonBgOn.gif";

function press(ID)
{
	document.getElementById(ID).style.backgroundImage='url(images/aButtonBgDown.gif)';
	document.getElementById(ID).style.backgroundPosition='top';
}
function release(ID)
{
	document.getElementById(ID).style.backgroundPosition='bottom';
	document.getElementById(ID).style.backgroundImage='url(images/aButtonBg.gif)';
}
function over(ID)
{
	document.getElementById(ID).style.backgroundPosition='bottom';
	document.getElementById(ID).style.backgroundImage='url(images/aButtonBgOn.gif)';
}
	function linkify(URL,target, config)
{
	if(target != '')
	{
		// Open in a new window
		window.open(URL, target, config);
	}
	else
	{
		location.href=URL;
	}
}