function viewImage(imageName) {
var newWindow;
if (newWindow == null)
	{	
	newWindow = window.open("view.asp?img="+ escape(imageName),"KBBT","width=400,height=300,scrollbars=0,resizable=0,status=0,menubar=0");
	newWindow.focus();
	}
}

function viewFlash(imageName) {
var newWindow;
if (newWindow == null)
	{	
	newWindow = window.open("viewflash.asp?img="+ escape(imageName),"KBBT","width=250,height=200,scrollbars=0,resizable=0,status=0,menubar=0");
	newWindow.focus();
	}
}