function bigImg1(name) {
var f_name="/img/"+name+".gif"
big = window.open('','big','width=520,height=450,status=no');
big.document.open();
big.document.write('<body topmargin="0" leftmargin="0">');
big.document.write('<a href="javascript:self.close();">');
big.document.write('<img src="',f_name,'" border="0"></a>');
big.focus();
big.document.close();
}

