var ie = (document.all) ? true:false;
var imagewindow;
var image2load;
var imgCount = 0;
var imgWinName = "new_window";

function view_image(imagename,height,width)
{
	if(ie && imagewindow)
		imagewindow.close();
	image2load = "gfx/" + imagename + ".jpg";
	imgWinName = "popImg" + imgCount++;
	var strOptions = 'width=' + width + ',height=' + height + ',resizable=no,scrollbars=auto,toolbar=no,directories=no,location=no,status=no,menubar=no'
	imagewindow = window.open('imageloader.html','image_window',strOptions)
}

function write_email(suffix)
{
	w('<a class=content href=\"mailto:');
	w('dsmith@');
	w('drexel.edu');
	w('?subject=www.dan-smith.' + suffix + '\">');
	w('dsmith@');
	w('drexel.edu');
	w('</a>');
}

function w(x)
{
	document.write(x);
}