function imageWindow(imageFile,windowTitle,windowName)
{
	// This function displays an image in a new browser window
	// and automatically resizes the window to the image size.

	newWindow = window.open("",windowName,"scrollbars=0,resizable=0,width=200,height=200");
	newWindow.document.writeln('<html>');
	newWindow.document.writeln('<head>');
	newWindow.document.writeln('<title>' + windowTitle + '</title>');

	newWindow.document.writeln('<script language="JavaScript">');
	newWindow.document.writeln('function resizeWindow()');
	newWindow.document.writeln('{');
	newWindow.document.writeln('  h = window.document.images[0].height + 140;');
	newWindow.document.writeln('  w = window.document.images[0].width + 30;');
	newWindow.document.writeln('  window.resizeTo(w,h);');
	newWindow.document.writeln('}');

	newWindow.document.writeln('var message="Website content is the property of Land Designs Unlimited LLC.  All rights reserved.";');
	newWindow.document.writeln('function clickIE4()');
	newWindow.document.writeln('{');
	newWindow.document.writeln('  if (event.button==2)');
	newWindow.document.writeln('  {');
	newWindow.document.writeln('    alert(message);');
	newWindow.document.writeln('    return false;');
	newWindow.document.writeln('  }');
	newWindow.document.writeln('}');
	newWindow.document.writeln('function clickNS4(e)');
	newWindow.document.writeln('{');
	newWindow.document.writeln('  if (document.layers||document.getElementById&&!document.all)');
	newWindow.document.writeln('  {');
	newWindow.document.writeln('    if (e.which==2 || e.which==3)');
	newWindow.document.writeln('    {');
	newWindow.document.writeln('      alert(message);');
	newWindow.document.writeln('      return false;');
	newWindow.document.writeln('    }');
	newWindow.document.writeln('  }');
	newWindow.document.writeln('}');
	newWindow.document.writeln('if (document.layers)');
	newWindow.document.writeln('{');
	newWindow.document.writeln('  document.captureEvents(Event.MOUSEDOWN);');
	newWindow.document.writeln('  document.onmousedown=clickNS4;');
	newWindow.document.writeln('}');
	newWindow.document.writeln('else if (document.all&&!document.getElementById)');
	newWindow.document.writeln('{');
	newWindow.document.writeln('  document.onmousedown=clickIE4;');
	newWindow.document.writeln('}');
	newWindow.document.writeln('document.oncontextmenu=new Function("alert(message);return false")');    

	newWindow.document.writeln('</script>');

	newWindow.document.writeln('</head>');

	newWindow.document.writeln('<img src="' + imageFile + '" onLoad="resizeWindow()">');

	newWindow.document.writeln('<form> <p align="center"><input TYPE="button" VALUE="Close" onClick="window.close()">');
	newWindow.document.writeln('&nbsp;&nbsp;&nbsp;</form>');

	newWindow.document.writeln('<center>');
	newWindow.document.writeln('<font face="Verdana" size="1">Land Designs Unlimited, LLC</font>');
	newWindow.document.writeln('</center>');
	newWindow.document.writeln('');
	newWindow.document.writeln('');

	newWindow.document.writeln('</body></html>');

}

