<!--
if(document.images) { 
		currentslide=1; 
		maxslides=3; 
		slide = new Array(maxslides+1); 
		for(var n=1;n<=maxslides;n++) { 
			slide[n]=new Image(274,148); 
			slide[n].src='images/'+n+'.jpg'; 
		} 
	} 
	function prevSlide() { 
		if(document.images) { 
			currentslide--; 
			if(currentslide<1) currentslide=maxslides; 
			document.images['slide'].src=slide[currentslide].src; 
		} 
	} 
	function nextSlide() { 
		if(document.images) { 
			currentslide++; 
			if(currentslide>maxslides) currentslide=1; 
			document.images['slide'].src=slide[currentslide].src; 
		} 
	} 
//-->

<!--

function openURL()
{

      // grab index number of the selected option
      selInd = document.theForm.aaa.selectedIndex;

      // get value of the selected option
      goURL = document.theForm.aaa.options[selInd].value;

      // redirect browser to the grabbed value (hopefully a URL)
      top.location.href = goURL;

}

//-->

<!--

function mailpage()
{
mail_str = "mailto:?subject=Plovers Website"
mail_str += "&body=I thought you might be interested in this web site."
mail_str += " The web site address is www.plovers.net."
location.href = mail_str;
}

//-->

<!--
var remote = null;
function rs(n,u,w,h) {
remote = window.open(u, n, 'width=' + w + ',height=' + h +',resizable=yes,menubar=no,scrollbars=yes');
if (remote != null) {
if (remote.opener == null)
remote.opener = self;
window.name = 'PLVRoot';
remote.location.href = u;
}
}
//-->
<!--
function changeImages() {
if (document.images ) {
for (var i=0; i<changeImages.arguments.length; i+=2) {
document[changeImages.arguments[i]].src = changeImages.arguments[i+1];
}
}
}
//-->
