<!--
function imgwin(src,name,w,h){
	var w=window.open("",name,"width="+w+",height="+h+",resizable=0,scrollbars=0");
	with(w.document){
		open();
		writeln("<html><head><title>"+name+"</title></head>");
		writeln("<body bgcolor=#faffff leftmargin=0 topmargin=0 marginwidth=0 marginheight=0>");
		writeln("<a href='javascript:top.close()'><img src='"+src+"' border='0'></a></body></html>");
		close();
	}
}
//-->