<!--

function BackAndForth(LinkPrevious,Heading,Message,LinkForward)
{
document.write ('<table border="0" width="100%" >')
document.write ('  <tr>')
document.write ('    <td width="13%">')

if (LinkPrevious !== "")
{	if (LinkPrevious == "#Back")
	{
	document.write ('      <p align="left"><img border="0" src="../Common/BACKWARD.GIF" alt = "Back"')
	document.write ('      onclick="history.go(-1);return true;" width="70" height="30"></p>')
	}
	else
	{
	document.write ('      <p align="left">')
	document.write ('<a href="' + LinkPrevious + '">')
	document.write ('<img border="0" src="../Common/BACKWARD.GIF" alt = "' + LinkPrevious + '" width="70" height="30"></a></p>')
	}
}
document.write('    </td>')
document.write('    <td width="74%">')



if (Heading !=="")
{
	document.write('      <h1 style = "margin-top: -6; margin-bottom: -4; align="center">')
	document.write('	<font size="6">' + Heading + '</font></h1>')
}
if (Message !== "")
{	if (Message == "#Ebay")
	{
	document.write ('<h4 style="margin-top: 0; margin-bottom: 0">(Click on Each Image to View, or the relevant ')
	document.write ('<img border="0" src="../Common/smallebay.gif" width="27" height="13">')
	document.write (' icon to go to the Auction)</h4>')
	}
	else if (Message == "#Image")
	{
	document.write ('<h4 style="margin-top: 0; margin-bottom: 0">(Click on Each Image to View)')
	}
	else
	{
	document.write ('<h4 style="margin-top: 0; margin-bottom: 0">')
	document.write (Message)
	document.write ('</h4>')
	}
}

document.write('    </td>')
document.write ('    <td width="13%" valign="middle">')

if (LinkForward !== "")
{	document.write ('      <p align="right">')
	document.write ('<a href="' + LinkForward + '">')
	document.write ('<img border="0" src="../Common/FORWARD.GIF"  alt = "' + LinkForward + '" width="70" height="30"></a></p>')
}
	document.write ('    </td>')
	document.write ('  </tr>')
	document.write ('</table>')
}

// -->


