function fsoFormPopup(fsoFormType)
{
	window.open("fsoForm.asp?id="+ fsoFormType,"_blank","toolbar=yes, location=no, directories=no, status=no, menubar=yes, scrollbars=yes, resizable=no, copyhistory=no, width=500, height=600");
}

function fsoHomePhotosLoad()
{
document.getElementById('HomePhoto1').innerHTML='<a href="' + arrPhotos[0] + '" id="HomePhoto1x"><img src="' + arrPhotos[0] + '"/></a>'
document.getElementById('HomePhoto2').innerHTML='<a href="' + arrPhotos[1] + '" id="HomePhoto2x"><img src="' + arrPhotos[1] + '"/></a>'
document.getElementById('HomePhoto3').innerHTML='<a href="' + arrPhotos[2] + '" id="HomePhoto3x"><img src="' + arrPhotos[2] + '"/></a>'
document.getElementById('HomePhoto1x').rel='lightbox'
document.getElementById('HomePhoto2x').rel='lightbox'
document.getElementById('HomePhoto3x').rel='lightbox'

}

function fsoHomePhotosNext(arrPhotosCurrent, arrPhotos)
{

var arrPhotosCurrent0 = arrPhotosCurrent+1
var arrPhotosCurrent1 = arrPhotosCurrent+2
var arrPhotosCurrent2 = arrPhotosCurrent+3

if (arrPhotosCurrent0 > arrPhotos.length-1)
{
	arrPhotosCurrent0 = 0
	arrPhotosCurrent1 = 1
	arrPhotosCurrent2 = 2
	arrPhotosCurrent = -1
}

if (arrPhotosCurrent1 > arrPhotos.length-1)
{
	arrPhotosCurrent1 = 0
	arrPhotosCurrent2 = 1
}

if (arrPhotosCurrent2 > arrPhotos.length-1)
{
	arrPhotosCurrent2 = 0
}

document.getElementById('HomePhoto1').innerHTML='<a href="' + arrPhotos[arrPhotosCurrent0] + '" id="HomePhoto1x"><img src="' + arrPhotos[arrPhotosCurrent0] + '"/></a>'
document.getElementById('HomePhoto2').innerHTML='<a href="' + arrPhotos[arrPhotosCurrent1] + '" id="HomePhoto2x"><img src="' + arrPhotos[arrPhotosCurrent1] + '"/></a>'
document.getElementById('HomePhoto3').innerHTML='<a href="' + arrPhotos[arrPhotosCurrent2] + '" id="HomePhoto3x"><img src="' + arrPhotos[arrPhotosCurrent2] + '"/></a>'
document.getElementById('HomePhoto1x').rel='lightbox'
document.getElementById('HomePhoto2x').rel='lightbox'
document.getElementById('HomePhoto3x').rel='lightbox'

document.getElementById('arrPhotosCurrent').innerHTML = arrPhotosCurrent+1

}

function fsoHomePhotosPrevious(arrPhotosCurrent, arrPhotos)
{

var arrPhotosCurrent0 = arrPhotosCurrent-1
var arrPhotosCurrent1 = arrPhotosCurrent-2
var arrPhotosCurrent2 = arrPhotosCurrent-3

if (arrPhotosCurrent0 < 0)
{
	arrPhotosCurrent0 = arrPhotos.length-1
	arrPhotosCurrent1 = 0
	arrPhotosCurrent2 = 1
	arrPhotosCurrent = arrPhotos.length-1
}

if (arrPhotosCurrent1 < 0)
{
	arrPhotosCurrent0 = arrPhotos.length-2
	arrPhotosCurrent1 = arrPhotos.length-1
	arrPhotosCurrent2 = 0
	arrPhotosCurrent = arrPhotos.length-2
}

if (arrPhotosCurrent2 < 0)
{
	arrPhotosCurrent0 = arrPhotos.length-3
	arrPhotosCurrent1 = arrPhotos.length-2
	arrPhotosCurrent2 = arrPhotos.length-1
	arrPhotosCurrent = arrPhotos.length-3
}

document.getElementById('HomePhoto1').innerHTML='<a href="' + arrPhotos[arrPhotosCurrent0] + '" id="HomePhoto1x"><img src="' + arrPhotos[arrPhotosCurrent0] + '"/></a>'
document.getElementById('HomePhoto2').innerHTML='<a href="' + arrPhotos[arrPhotosCurrent1] + '" id="HomePhoto2x"><img src="' + arrPhotos[arrPhotosCurrent1] + '"/></a>'
document.getElementById('HomePhoto3').innerHTML='<a href="' + arrPhotos[arrPhotosCurrent2] + '" id="HomePhoto3x"><img src="' + arrPhotos[arrPhotosCurrent2] + '"/></a>'
document.getElementById('HomePhoto1x').rel='lightbox'
document.getElementById('HomePhoto2x').rel='lightbox'
document.getElementById('HomePhoto3x').rel='lightbox'

document.getElementById('arrPhotosCurrent').innerHTML = arrPhotosCurrent-1

}

