	function arrows(prev ,next, header)
{
	document.write('<div align="center"><hr width="50%" noshade color="#0369b7">');
	document.write('<span style="font-weight:bold;">' + header + '</span><BR>');
	if(prev == "")
	{
		document.write('<a href="' + next + '"><img src="../images/smallarrow.png" alt="" width="54" height="28" border="0"><!-- <img src="images/next.png" alt="" width="112" height="39" border="0"> --></a>');
	}
	else if(next == "")
	{
		document.write('<a href="' + prev + '"><img src="../images/smallarrow2.png" alt="" width="54" height="28" border="0"></a>');
	}
	else
	{
		document.write('<a href="' + prev + '"><img src="./images/smallarrow2.png" alt="" width="54" height="28" border="0"></a> &nbsp; &nbsp; <a href="' + next + '"><img src="../images/smallarrow.png" alt="" width="54" height="28" border="0"></a>');
	}
	document.write('<hr width="50%" noshade color="#0369b7">');
	document.write('</div>');
}

function simpleArrows(prev ,next)
{
	if(prev == "")
	{
		document.write('<a href="' + next + '" title="Next"><img src="../images/arrowr.png" alt="" width="25" height="13" border="0" id="rightarrow"></a>');
	setTimeout("rightpulse()",1500);
	}
	else if(next == "")
	{
		document.write('<a href="' + prev + '" title="Back"><img src="../images/arrowl.png" alt="" width="25" height="13" border="0" id="leftarrow"></a>');
	setTimeout("leftpulse()",1500);
	}
	else
	{
		document.write('<a href="' + prev + '" title="Back"><img src="../images/arrowl.png" alt="" width="25" height="13" border="0" id="leftarrow"></a> &nbsp; &nbsp; <a href="' + next + '" title="Next"><img src="../images/arrowr.png" alt="" width="25" height="13" border="0" id="rightarrow"></a>');
	setTimeout("pulse()",1500);
	}

	//add in omo capability!
}

function leftpulse()
{
	document.getElementById("leftarrow").src = "../images/arrowl2.png";
	setTimeout("leftpulse2()",1500);
}

function rightpulse()
{
	document.getElementById("rightarrow").src = "../images/arrowr2.png";
	setTimeout("rightpulse2()",1500);
}

function pulse()
{
	document.getElementById("leftarrow").src = "../images/arrowl2.png";
	document.getElementById("rightarrow").src = "../images/arrowr2.png";
	setTimeout("pulse2()",1500);
}

function leftpulse2()
{
	document.getElementById("leftarrow").src = "../images/arrowl.png";
	setTimeout("leftpulse()",1500);
}

function rightpulse2()
{
	document.getElementById("rightarrow").src = "../images/arrowr.png";
	setTimeout("rightpulse()",1500);
}

function pulse2()
{
	document.getElementById("leftarrow").src = "../images/arrowl.png";
	document.getElementById("rightarrow").src = "../images/arrowr.png";
	setTimeout("pulse()",1500);
}
