	imagename='';
	function enLarge(imgnme,theText) {
		lrgewin=window.open("about:blank","","height=200,width=200,left=350,top=100,resizable")
		imagename=imgnme;
		myText=theText;
		setTimeout('update(myText)',1000)
	}
	function win(fileName)
		{
		myFloater=window.open('','myWindow','scrollbars=auto,status=no,width=400,height=300')
		myFloater.location.href=fileName;
		}
	function update(imgText) {
	doc=lrgewin.document;
	imageText=imgText;
	doc.open('text/html');
	doc.write('<HTML><HEAD>');
	doc.write('<link href="js/hclStyle2.css" rel="stylesheet" type="text/css">');
	doc.write('<TITLE>Swamp and River Tours<\/TITLE><\/HEAD><BODY bgcolor="#ffffff" onLoad="if  (self.resizeTo)self.resizeTo((document.images[0].width+10),(document.images[0].height+80))" topmargin="4" leftmargin="0" rightmargin="0" bottommargin="0"><table width=""' + document.images[0].width + '" border="0" cellspacing="0" cellpadding="0"><tr><td align="center">');
	doc.write('<a href="javascript:window.close();"><IMG SRC="' + imagename + '" border="0"></a><\/td><\/tr>');
	doc.write('<tr><td align="center" class="normalText">' + imageText + '<\/td><\/tr><\/table>');
	doc.write('<\/BODY><\/HTML>');
	doc.close();
	}

    function openimage(imageurl) {
		var myurl='http://www.swampandrivertours.com/images/gallery/'+imageurl;
		var o = 'width=440,height=360,left=350,top=100,resizable,status=0,menubar=0,scrollbars=1,toolbar=0,location=0,directories=0';
		window.open(myurl, '', o);
	}
