<!--// popup windowfunction PictureWindow(fname, wname, w, h) {	var ww = eval(w + 40);	var wh = eval(h + 40);	wname=window.open ("", wname, "toolbar=no,directories=no,menubar=no,scrollbars=yes,width=" + ww + ",height=" + wh);	with (wname.document) {		write("<html><head><title>clever :: press</title></head><body bgcolor='white' text='black' topmargin='8'>");		write("<div align='center'><img src='press/" + fname + "' width='" + w + "' height='" + h + "'></div>");		write("</body></html>");		close()	}}// -->