var lastSender=null;
var lastColor;
var navList=null;
var frmSell=null;



function init()
{
	navList=document.getElementById("navList");
	frmSell=document.getElementById("frmSell");
}

function switchPic(sender,picURL,sellText)
{
if(lastSender!=null)
{
lastSender.style.color=lastColor;
}
lastSender=sender;
lastColor=sender.style.color;
sender.style.color="black";	

var strOutput="<img border='0' src='" + picURL + "' width='330'>";

if(sellText.length>0)
{
strOutput+="<br/><br/></><a href='javascript:switchFrmVisibility(true);'>"+sellText+"</a>"
}

document.getElementById("contentTd").innerHTML=strOutput;
}


function switchFrmVisibility(visible)
{
	if(!(navList&&frmSell))
	{
	return;	
	}
	
	if(visible)
	{
		navList.style.display="none";
		frmSell.style.display="block";			
	}else
	{
		navList.style.display="block";
		frmSell.style.display="none";		
	}
	
}

window.onload=init;
