<!--//

var image1 = new Image();
image1.src=	"/graphics/archives_hot.gif";
var image2 = new Image;
image2.src=	"/graphics/essays_hot.gif";
var image3 = new Image;
image3.src=	"/graphics/photos_hot.gif";
var image4 = new Image;
image4.src=	"/graphics/journal_hot.gif";
var image5 = new Image;
image5.src=	"/graphics/about_hot.gif";
var image6 = new Image;
image6.src=	"/graphics/projects_hot.gif";



var winOpts =
  'resizeable,scrollbars,status,width=450,height=540';

function popUp(pPage) {
  popUpWin =
  window.open(pPage,'popWin','resizeable,scrollbars,status,width=450,height=540');
  }

function viewComments(n) {
	  window.open('http://www.likeanorb.com/blog/comments.php?' + n, 'comments' + n, 'directories=0,height=480,location=0,resizable=1,scrollbars=1,toolbar=0,width=515');
	}
	
function OpenSesame(path, width, height, scroll) {
	var scr = scroll;
	if (scr == "") {
		scr = "no"};
	
	window.open(path, "new", "width="+width+",height="+height+",scrollbars="+scr+",resizable=yes");
	}
function note(noteName, height) {
	window.open("/notes/note.php?n=" + noteName, "note", "width=400,height="+height+",scrollbars,resizable");
	}	
	
function imgSwap(imgPrefix, state) {
//	alert(state);
	var thisImage = document.getElementById(imgPrefix);
	if(state=="hot") {
		 thisImage.src="/graphics/"+imgPrefix+"_hot.gif";
	}
	else {
		thisImage.src="/graphics/"+imgPrefix+".gif";
	}

//	alert(thisImage.src);
return true;
}
	
	//-->
