function imgcng(inm){
	if (navigator.appName.substring(0,9) == "Microsoft" ){
		document.mimg.src= inm;
		return false;
	}else{
		aomimg=window.open("","aomimg" ); 
		aomimg.document.open(); 
		aomimg.document.write("<body marginheight=0 topmargin=0 marginwidth=0 leftmargin=0>"); 
		aomimg.document.write("<img src=\"" + inm + "\">"); 
		aomimg.document.write("</body>"); 
		aomimg.document.close(); 
		return false;
	}
	return true;
}