myImages=new Array()
myImages[0]="_1.jpg"
myImages[1]="_2.jpg"
myImages[2]="_3.jpg"
myImages[3]="_4.jpg"
myImages[4]="_5.jpg"
myImages[5]="_6.jpg"
myImages[6]="_7.jpg"
myImages[7]="_8.jpg"
myImages[8]="_9.jpg"
myImages[9]="_10.jpg"
myImages[10]="_11.jpg"
myImages[11]="_12.jpg"
myImages[12]="_13.jpg"
myImages[13]="_14.jpg"
myImages[14]="_15.jpg"
myImages[15]="_16.jpg"
i=0

function first(z)
{
document.getElementById('imageviewer').src = z + myImages[0]
i=0
}

function previous(z)
{
if (i>0)
	{
	i--
	document.getElementById('imageviewer').src = z + myImages[i]
	}
}

function next(x,z)
{
if (i<x)
	{
	i++
	document.getElementById('imageviewer').src = z + myImages[i]
	}
}

function last(x,z)
{
document.getElementById('imageviewer').src = z + myImages[x]
i=x
}

<!--
function BigPicture(pic){
	var picture = "http://www.wfl-re.com/bigpicture.asp?Load=" + pic
	controlWindow2=window.open(picture,"","width=420,height=320");
	}
// -->

<!--
function MortgageWindow(){
	controlWindow=window.open("http://www.wfl-re.com/Utilities/MiniCalculator.htm","","width=450,height=340");
	}
// -->