<!-- Beginfunction BioWindow(mypage, myname, w, h, scroll) {var winl = (screen.width - w) / 3;var wint = (screen.height - h) / 3;winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable'win = window.open(mypage, myname, winprops)if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }}	function popup(FILE, width, height) {	CONTENT = "<HTML><HEAD><TITLE>Detail</TITLE></HEAD>" +    "<BODY topMargin=0 leftMargin=0><IMG SRC='" + FILE + "' BORDER=0>" +	"</BODY></HTML>";	pop = window.open("","",'height='+height+',width='+width+',scrollbars=0,resizable=0,menubar=0,toolbar=0,status=0,location=0,directories=0,left=50,top=50');	pop.document.open();    pop.focus();    pop.document.write(CONTENT);    pop.document.close();	}//  End -->
