function linkover(id)
{
	doc = document.getElementById(id).style;
	doc.backgroundImage = "url('images/linkover.png')";
	doc.cursor = "pointer";
}

function linkoverclr(id)
{
	doc = document.getElementById(id).style;
	doc.backgroundImage = "url('images/sidelinkover.png')";
	doc.cursor = "pointer";
}

function linkoutclr(id)
{
	doc = document.getElementById(id).style;
	doc.backgroundImage = "url('images/sidelink.png')";
	doc.cursor = "pointer";
}

function linkout(id)
{
	doc = document.getElementById(id).style;
	doc.backgroundImage = "";
	doc.cursor = "pointer";
}

var i=0;
function imageholder(id,image)
{
	doc = document.getElementById(id);
	doc.innerHTML =  "<img src="+image+" border=\"0\" width=\"360\" height=\"270\" />"; 
	i++;
}
				  