function openwindow()
{
	window.open("Content/glossary.html","mywindow","menubar=1,resizable=1,width=415,height=450");
}

/* -- random images for users not logged-in --*/
var theImages = new Array() // do not change this

theImages[0] = '/Content/images/sidebar_genart01.jpg'
theImages[1] = '/Content/images/sidebar_genart02.jpg'

var j = 0
var p = theImages.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theImages[i]
}
var whichImage = Math.round(Math.random()*(p-1));
function showImage(){
document.write('<img src="'+theImages[whichImage]+'">');
}
