
oversearch= new Image
outsearch= new Image

overprint= new Image
outprint= new Image

oversearch.src="/images/searchon.gif"
outsearch.src="/images/searchoff.gif"

overprint.src="/images/printon.gif"
outprint.src="/images/printoff.gif"


function searchover(over)
{
	document.getElementById(over).src=oversrch.src
}

function searchout(out)
{
	document.getElementById(out).src=outsrch.src
}

function rollover(lnk)
{
	document.getElementById(lnk).style.backgroundImage="url(/images/menuon.gif)"
	document.getElementById(lnk).style.backgroundRepeat="repeat-y"
	document.getElementById(lnk).style.backgroundPosition="left"
}

function rollout(lnk)
{
	document.getElementById(lnk).style.backgroundImage="url(/images/menuoff.gif)"
	document.getElementById(lnk).style.backgroundRepeat="repeat-y"
	document.getElementById(lnk).style.backgroundPosition="left"		
}

function imagerollover(imgid,imgsrc)
{
	document.getElementById(imgid).src=eval(imgsrc+".src")
}

function open_win(page,name)
{
new_win=window.open(page,"popup"+name,"toolbar=no, location=no, directories=no, status=no, menubar=yes, scrollbars=yes, resizable=yes, copyhistory=yes, width=586, height=585")
new_win.focus()

	if (!new_win.focus)
	{
		new_win.focus()
	}
}


function displayblock(lnk,change)
{

 if (document.getElementById(lnk).style.display=="none")
 {
 	document.getElementById(lnk).style.display="block"
	document.getElementById(change).innerHTML="&minus;"
 }
 else
 {
 	document.getElementById(lnk).style.display="none"
	document.getElementById(change).innerHTML="+"
 }

}
