function newWindow(link,width,height) {

content="";

if(width) {
content="width="+width+",height="+height+",scrollbars=yes,resizable=yes";
}

window.open(link,"",content);
}





document.defaultStatus="The Montauk Project: Our Investigation - "+document.title;

function foldInfo (name,dest,desc) {
this.name=name;
this.dest=dest;
this.desc=desc;
}

menu=new Array (1);

menu[0]=new foldInfo("Main Menu Page","main.php","");

menu[1]=new foldInfo("New!","content.php?page=new","Click here to see a brief description of all of the latest changes to this site.");

menu[2]=new foldInfo("Investigative Reports","content.php?page=reptoc","Reports of our excursions to Camp Hero and the surrounding area and reports on our other avenues of investigation. Some of the text contains embedded photos to give a clearer picture of what we are describing.");

menu[3]=new foldInfo("Thumbnail Galleries","content.php?page=gallery&amp;start=1&amp;finish=30","Click here to see our photo galleries with descriptions of each photo.");

menu[4]=new foldInfo("Camp Hero Area Map","content.php?page=areamap","Click here to see a map of the Camp Hero area with embedded photos and descriptions.");

menu[5]=new foldInfo("Montauk Timeline","content.php?page=timeline","Click here to see a timeline of events regarding The Montauk Project and similiarly related material.");

menu[6]=new foldInfo("Maps","content.php?page=maps","Click here to see some of the maps and aerial photos that we have collected of the Camp Hero area.");

menu[7]=new foldInfo("Dish Rotation","content.php?page=rotation","Click here to see the photographic proof we now have of the dish rotating in the mid-1990's.");

menu[8]=new foldInfo("Books and Videos","content.php?page=books","Click here for a list of books and videos about the Montauk Project and related topics.  Purchasing is available through AMAZON.com.");

menu[9]=new foldInfo("Links","content.php?page=links","Click here to go to our list of links to other Montauk Project and related web sites.");

menu[10]=new foldInfo("","","");





openFolder = new Image(16,16);
openFolder.src = "miscimages/folder2.gif";





function highLight(folder) {

document.images[folder+1].src=openFolder.src;
document.forms[0].description.value=menu[folder].desc;
}

function lowLight(folder) {
document.images[folder+1].src="miscimages/folder.gif";
document.forms[0].description.value="";
}





function makeMainMenu() {

for (i=1;i<menu.length;i+=2) {
var content='';
content+='<tr><td align="left" style="border: 1pt solid #000000;">';

content+='<a href="'+menu[i].dest+'" style="width: 100%; color: #ffffff; text-decoration: none;" onmouseover="highLight('+i+')" onmouseout="lowLight('+i+')">';

content+='<img width="16" height="16" src="miscimages/folder.gif" alt="Folder" /> '+menu[i].name;
content+='</a>';
content+='</td>';

content+='<td align="right" style="border: 1pt solid #000000;">';
content+='<a href="'+menu[i+1].dest+'" style="width: 100%; color: #ffffff; text-decoration: none;" onmouseover="highLight('+(i+1)+')" onmouseout="lowLight('+(i+1)+')">';
content+=''+menu[i+1].name+' <img width="16" height="16" src="miscimages/folder.gif" alt="Folder" />';
content+='</a>';
content+='</td></tr>';

document.write(content);
}

}





function makeMenu() {

content=''
content+='<br /><br /><table width="100%">'
for (i=0; i<menu.length; i++) {

 
content+='<tr><td class="menuItem">';
content+='<a class="menuItem" href="'+menu[i].dest+'" title="'+menu[i].desc+'"';

content+='onmouseout="displayStatus(defaultStatus); return true">'

content+=menu[i].name

content+='</a>'
content+='</td></tr>'

}

content+='</table><br><br>'

document.write(content)
}

function displayStatus(msg) {
window.status=msg

}