// JavaScript Document
function closewindow()
{
window.close()
}

if (document.images) 
{
   img = new Image();
         
   img.src = "inside.jpg";
   
   	}

var p;
function hide_popup()
{
		p.hide();
		p = null;
}

function show_popup()
{
p=window.createPopup();
var pbody=p.document.body;
pbody.style.backgroundColor="#ffffff";
pbody.style.color="#003333";
pbody.style.border="solid #000000 5px";
pbody.style.padding="10px";
pbody.innerHTML='<p style="margin:3px;"><span style="font-weight:bold;">Inside: </span> Trail Descriptions, local lore, illustrated maps, descriptive pictures and more...</p> <img src="inside.jpg" style = "border: solid #cccc99 4px; margin-right:10px;" />';
p.show(300,0,640,200,document.body);
}



