function openWindow(url) {
	tallWin = window.open(url, 'ASMF', 'width=900,height=630,toolbar=0,location=0,directories=0,status=no,menubar=0,scrollbars=1,resizable=1,fullscreen=no');
}

function openThumb(url,spawnWidth,spawnHeight) {
	var spawnWidthwin = spawnWidth + 20;
	var spawnHeightwin = spawnHeight + 20;
    thumbWin = window.open(url,'AMSF','toolbar=0,location=0,directories=0,status=no,menubar=0,scrollbars=0,resizable=1,width='+spawnWidthwin+',height='+spawnHeightwin+',fullscreen=no');
    if (navigator.appName == 'Netscape') {
	    thumbWin.focus();
    };
	thumbWin.document.open();
	thumbWin.document.write('<html><head><title>Lowell Cain</title></head><body background="images/body_bg.jpg"><a href="javascript:self.close();"><img src="');
	thumbWin.document.write(url);
	thumbWin.document.write('" alt="" border="0" /></a></body></html>');
	thumbWin.document.close();
};